templates/show_msg.html
author nishanth
Wed, 24 Feb 2010 13:14:00 +0530
changeset 66 f670de53402b
parent 21 c28774fe7ffd
child 111 c272d4c601cd
permissions -rw-r--r--
modified view task template and view to suit new design.
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 %}