pytask/templates/show_msg.html
author nishanth
Sat, 30 Jan 2010 13:10:11 +0530
changeset 13 4da58abdf6ff
parent 12 pytask/templates/error.html@c823b42970a4
child 14 f2623fb8041a
permissions -rw-r--r--
renamed templates/error.html to templates/show_msg.html and made changes accordingly in views/user.
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 %}
13
4da58abdf6ff renamed templates/error.html to templates/show_msg.html and made changes accordingly in views/user.
nishanth
parents: 12
diff changeset
     3
    {% if message %}
4da58abdf6ff renamed templates/error.html to templates/show_msg.html and made changes accordingly in views/user.
nishanth
parents: 12
diff changeset
     4
    {{message}}<br />
12
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 %}