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