pytask/templates/error.html
author nishanth
Sat, 30 Jan 2010 13:04:58 +0530
changeset 12 c823b42970a4
permissions -rw-r--r--
added events/task.py and templates/error.html
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12
c823b42970a4 added events/task.py and templates/error.html
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
c823b42970a4 added events/task.py and templates/error.html
nishanth
parents:
diff changeset
     2
{% block content %}
c823b42970a4 added events/task.py and templates/error.html
nishanth
parents:
diff changeset
     3
    {% if error_msg %}
c823b42970a4 added events/task.py and templates/error.html
nishanth
parents:
diff changeset
     4
    {{error_msg}}<br />
c823b42970a4 added events/task.py and templates/error.html
nishanth
parents:
diff changeset
     5
    <a href="/">click here</a> to return to Homepage
c823b42970a4 added events/task.py and templates/error.html
nishanth
parents:
diff changeset
     6
    {% endif %}
c823b42970a4 added events/task.py and templates/error.html
nishanth
parents:
diff changeset
     7
{% endblock %}