templates/base.html
author nishanth
Tue, 23 Feb 2010 12:16:28 +0530
changeset 55 ca2486e29178
parent 45 ab8918e654ae
child 56 05e10eccd515
permissions -rw-r--r--
added a utility called getTask in task events and made changes in task views accordingly

<html>
<head>
    <title>{% block title %}PyTasks{% endblock %}</title>
</head>
<body>
<h2><a href="/">PyTasks</a></h2>
<a href="javascript:history.go(-1)">back</a> 
{% if user.is_authenticated %}
 | <a href="/accounts/logout">logout</a> 
{% endif %}
<br><br>
{% block content %}This is the default content{% endblock %}</body>
</html>