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.

{% extends 'base.html' %}
{% block content %}
    {% if message %}
    {{message}}<br />
    <a href="/">click here</a> to return to Homepage
    {% endif %}
{% endblock %}