templates/show_msg.html
author anoop
Wed, 24 Feb 2010 15:41:37 +0530
changeset 71 801cf8fca53a
parent 21 c28774fe7ffd
child 111 c272d4c601cd
permissions -rw-r--r--
made change to the request model and corresponding create_request utility.
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 %}
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
     4
        {{message}}<br />
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
     5
    {% endif %}
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
     6
    {% if redirect_url %}
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
     7
        <a href={{redirect_url}}>click here</a> to return to {{url_desc}}
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
     8
    {% else %}
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
     9
        <a href="/">click here</a> to return to Homepage
20
ec7b1751c161 renamed templates/error.html to templates/show_msg.html and made changes accordingly in views/user.
nishanth
parents:
diff changeset
    10
    {% endif %}
ec7b1751c161 renamed templates/error.html to templates/show_msg.html and made changes accordingly in views/user.
nishanth
parents:
diff changeset
    11
{% endblock %}