diff options
Diffstat (limited to 'pytask/templates/_right_sidebar.html')
-rw-r--r-- | pytask/templates/_right_sidebar.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/pytask/templates/_right_sidebar.html b/pytask/templates/_right_sidebar.html new file mode 100644 index 0000000..4926613 --- /dev/null +++ b/pytask/templates/_right_sidebar.html @@ -0,0 +1,38 @@ +{% load user_tags %} + +<div id="navheader"> + {% if user.is_authenticated %} + {{ user.username }} Actions + {% else %} + Login Form + {% endif %} +</div> +<ul id="nav"> + + {% if user.is_authenticated %} + + <li> + <a href="{% url browse_notifications %}" title="notifications"> + {{ user|notf_dsp }} + </a> + </li> + <br> + <li><a href="{% url view_profile %}">Profile</a></li> + <li><a href="{% url auth_logout %}">Logout</a></li> + + {% else %} + + <li> + <a href="{% url registration_register %}" title="register"> + Register + </a> + </li> + <li> + <a href="{% url auth_login %}" title="login"> + Login + </a> + </li> + + {% endif %} + +</ul>
\ No newline at end of file |