| author | anoop |
| Mon, 01 Feb 2010 14:14:04 +0530 | |
| changeset 17 | 9ca9f98af0eb |
| parent 14 | f2623fb8041a |
| permissions | -rw-r--r-- |
| 12 | 1 |
{% extends 'base.html' %}
|
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 | 10 |
{% endif %}
|
11 |
{% endblock %}
|