annotate gpp/templates/navbar.html @ 517:666147a2cc08

Moved the imports from the top of the file into the task function. This seemed to prevent some strange import errors that only occurred on the production server. I don't know if the problems were related to mod_wsgi or Python 2.5 or what.
author Brian Neal <bgneal@gmail.com>
date Thu, 15 Dec 2011 02:49:16 +0000
parents 886cc99e8406
children
rev   line source
bgneal@500 1 {% load url from future %}
bgneal@500 2 {% load messages_tags %}
bgneal@500 3 <ul>
bgneal@500 4 {% if user.is_authenticated %}
bgneal@500 5 <li>Welcome, <a href="{% url 'bio-me' %}">{{ user.username }}</a></li>
bgneal@500 6 <li><a href="{% url 'forums-index' %}">Forums</a></li>
bgneal@500 7 <li>{% unread_messages user %}</li>
bgneal@500 8 <li><a href="{% url 'haystack_search' %}">Search</a></li>
bgneal@500 9 <li><a href="{% url 'accounts-logout' %}">Logout</a></li>
bgneal@500 10 {% else %}
bgneal@500 11 <li><a id="login-link" href="{% url 'accounts-login' %}">Login</a></li>
bgneal@500 12 <li><a href="{% url 'accounts-register' %}">Register</a></li>
bgneal@500 13 {% endif %}
bgneal@500 14 </ul>