templates/base.html
author anoop
Tue, 23 Feb 2010 13:14:18 +0530
changeset 56 05e10eccd515
parent 45 ab8918e654ae
child 68 624f9fd438e3
permissions -rw-r--r--
added message while logging off and removed back button from templates/base.html.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
ab8918e654ae added forgot password in template.
anoop
parents: 12
diff changeset
     6
<h2><a href="/">PyTasks</a></h2>
ab8918e654ae added forgot password in template.
anoop
parents: 12
diff changeset
     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
ab8918e654ae added forgot password in template.
anoop
parents: 12
diff changeset
     9
{% endif %}
ab8918e654ae added forgot password in template.
anoop
parents: 12
diff changeset
    10
<br><br>
ab8918e654ae added forgot password in template.
anoop
parents: 12
diff changeset
    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>