| author | nishanth |
| Mon, 01 Mar 2010 04:54:08 +0530 | |
| changeset 157 | 65d5e9737d1c |
| parent 111 | c272d4c601cd |
| child 173 | b8e7a4e86b35 |
| permissions | -rw-r--r-- |
|
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 | 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 %}
|