templates/base.html
author anoop
Fri, 19 Feb 2010 21:46:24 +0530
changeset 45 ab8918e654ae
parent 12 a93eebabfeb1
child 56 05e10eccd515
permissions -rw-r--r--
added forgot password in template.
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
<a href="javascript:history.go(-1)">back</a> 
ab8918e654ae added forgot password in template.
anoop
parents: 12
diff changeset
     8
{% if user.is_authenticated %}
ab8918e654ae added forgot password in template.
anoop
parents: 12
diff changeset
     9
 | <a href="/accounts/logout">logout</a> 
ab8918e654ae added forgot password in template.
anoop
parents: 12
diff changeset
    10
{% endif %}
ab8918e654ae added forgot password in template.
anoop
parents: 12
diff changeset
    11
<br><br>
ab8918e654ae added forgot password in template.
anoop
parents: 12
diff changeset
    12
{% 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
    13
</html>