pytask/templates/show_msg.html
author nishanth
Mon, 01 Feb 2010 11:10:29 +0530
changeset 14 f2623fb8041a
parent 13 4da58abdf6ff
permissions -rw-r--r--
implemented add another mentor functionality to a task.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12
c823b42970a4 added events/task.py and templates/error.html
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
c823b42970a4 added events/task.py and templates/error.html
nishanth
parents:
diff changeset
     2
{% block content %}
13
4da58abdf6ff renamed templates/error.html to templates/show_msg.html and made changes accordingly in views/user.
nishanth
parents: 12
diff changeset
     3
    {% if message %}
14
f2623fb8041a implemented add another mentor functionality to a task.
nishanth
parents: 13
diff changeset
     4
        {{message}}<br />
f2623fb8041a implemented add another mentor functionality to a task.
nishanth
parents: 13
diff changeset
     5
    {% endif %}
f2623fb8041a implemented add another mentor functionality to a task.
nishanth
parents: 13
diff changeset
     6
    {% if redirect_url %}
f2623fb8041a implemented add another mentor functionality to a task.
nishanth
parents: 13
diff changeset
     7
        <a href={{redirect_url}}>click here</a> to return to {{url_desc}}
f2623fb8041a implemented add another mentor functionality to a task.
nishanth
parents: 13
diff changeset
     8
    {% else %}
f2623fb8041a implemented add another mentor functionality to a task.
nishanth
parents: 13
diff changeset
     9
        <a href="/">click here</a> to return to Homepage
12
c823b42970a4 added events/task.py and templates/error.html
nishanth
parents:
diff changeset
    10
    {% endif %}
c823b42970a4 added events/task.py and templates/error.html
nishanth
parents:
diff changeset
    11
{% endblock %}