| author | anoop |
| Thu, 04 Feb 2010 23:12:07 +0530 | |
| changeset 23 | f33084ea1361 |
| parent 21 | c28774fe7ffd |
| child 111 | c272d4c601cd |
| 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 %}
|
|
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 %}
|