templates/base.html
changeset 45 ab8918e654ae
parent 12 a93eebabfeb1
child 56 05e10eccd515
--- a/templates/base.html	Thu Feb 18 19:39:54 2010 +0530
+++ b/templates/base.html	Fri Feb 19 21:46:24 2010 +0530
@@ -3,5 +3,11 @@
     <title>{% block title %}PyTasks{% endblock %}</title>
 </head>
 <body>
-<h2><a href="/">PyTasks</a></h2><br />{% block content %}This is the default content{% endblock %}</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>