--- a/pytask/templates/base.html Sun Jan 09 15:01:30 2011 +0530
+++ b/pytask/templates/base.html Sun Jan 09 15:09:13 2011 +0530
@@ -14,10 +14,11 @@
<div id="left">
<ul id="nav">
<li><a href="/" title="home">home</a></li>
- {% if user.is_authenticated %}
+ <br />
<li><a href="/task/browse/" title="tasks">tasks</a></li>
<li><a href="/textbook/" title="textbook">textbooks</a></li>
<br />
+ {% if user.is_authenticated %}
<li><a href="/profile/notf/browse/" title="notifications">
{{ user|notf_dsp }}
</a></li>
@@ -25,6 +26,7 @@
<li><a href="/profile/view">profile</a></li>
<li><a href="/accounts/logout/">logout</a></li>
{% else %}
+ <li><a href="/accounts/register/" title="register">register</a></li>
<li><a href="/accounts/login/" title="login">login</a></li>
{% endif %}
</ul>