Mercurial > public > sg101
annotate gpp/templates/navbar.html @ 532:ff67946fd4b0
For #242, move the updating of the POTD sequence into a new signals module.
When photos are deleted from the admin changelist in bulk, the individual
delete() functions on the photo objects is not called. However, the post_delete
signal is called for each object.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 25 Dec 2011 04:15:32 +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> |