Mercurial > public > sg101
comparison gpp/templates/navbar.html @ 500:886cc99e8406
For #240, add an "ajaxy" login via a jQuery UI pop-up dialog to streamline the login process.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 03 Dec 2011 02:48:18 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
499:1a09a7bea000 | 500:886cc99e8406 |
---|---|
1 {% load url from future %} | |
2 {% load messages_tags %} | |
3 <ul> | |
4 {% if user.is_authenticated %} | |
5 <li>Welcome, <a href="{% url 'bio-me' %}">{{ user.username }}</a></li> | |
6 <li><a href="{% url 'forums-index' %}">Forums</a></li> | |
7 <li>{% unread_messages user %}</li> | |
8 <li><a href="{% url 'haystack_search' %}">Search</a></li> | |
9 <li><a href="{% url 'accounts-logout' %}">Logout</a></li> | |
10 {% else %} | |
11 <li><a id="login-link" href="{% url 'accounts-login' %}">Login</a></li> | |
12 <li><a href="{% url 'accounts-register' %}">Register</a></li> | |
13 {% endif %} | |
14 </ul> |