author | anoop |
Tue, 23 Feb 2010 13:14:18 +0530 | |
changeset 56 | 05e10eccd515 |
parent 45 | ab8918e654ae |
child 68 | 624f9fd438e3 |
permissions | -rw-r--r-- |
12
a93eebabfeb1
created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff
changeset
|
1 |
<html> |
a93eebabfeb1
created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff
changeset
|
2 |
<head> |
a93eebabfeb1
created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff
changeset
|
3 |
<title>{% block title %}PyTasks{% endblock %}</title> |
a93eebabfeb1
created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff
changeset
|
4 |
</head> |
a93eebabfeb1
created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff
changeset
|
5 |
<body> |
45 | 6 |
<h2><a href="/">PyTasks</a></h2> |
7 |
{% if user.is_authenticated %} |
|
56
05e10eccd515
added message while logging off and removed back button from templates/base.html.
anoop
parents:
45
diff
changeset
|
8 |
<a href="/accounts/logout">logout</a> |
45 | 9 |
{% endif %} |
10 |
<br><br> |
|
11 |
{% block content %}This is the default content{% endblock %}</body> |
|
12
a93eebabfeb1
created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff
changeset
|
12 |
</html> |