templates/show_msg.html
author nishanth
Fri, 26 Feb 2010 02:52:32 +0530
changeset 111 c272d4c601cd
parent 21 c28774fe7ffd
child 173 b8e7a4e86b35
permissions -rw-r--r--
added the functionality to publish a task.
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 %}
111
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 21
diff changeset
     7
        <a href="{{redirect_url}}">click here</a> to return to {{url_desc}}
21
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 %}