templates/show_msg.html
author nishanth
Thu, 04 Feb 2010 22:34:22 +0530
changeset 20 ec7b1751c161
child 21 c28774fe7ffd
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:
20
ec7b1751c161 renamed templates/error.html to templates/show_msg.html and made changes accordingly in views/user.
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
ec7b1751c161 renamed templates/error.html to templates/show_msg.html and made changes accordingly in views/user.
nishanth
parents:
diff changeset
     2
{% block content %}
ec7b1751c161 renamed templates/error.html to templates/show_msg.html and made changes accordingly in views/user.
nishanth
parents:
diff changeset
     3
    {% if message %}
ec7b1751c161 renamed templates/error.html to templates/show_msg.html and made changes accordingly in views/user.
nishanth
parents:
diff changeset
     4
    {{message}}<br />
ec7b1751c161 renamed templates/error.html to templates/show_msg.html and made changes accordingly in views/user.
nishanth
parents:
diff changeset
     5
    <a href="/">click here</a> to return to Homepage
ec7b1751c161 renamed templates/error.html to templates/show_msg.html and made changes accordingly in views/user.
nishanth
parents:
diff changeset
     6
    {% endif %}
ec7b1751c161 renamed templates/error.html to templates/show_msg.html and made changes accordingly in views/user.
nishanth
parents:
diff changeset
     7
{% endblock %}