diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2012-09-03 17:21:04 +0200 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2012-09-03 17:21:04 +0200 |
commit | 0942d798f6ab24214466a484a21c8085e0ff7807 (patch) | |
tree | 6cb3266ec92bea886a798aa7ce551f3efc9ff903 /hyperkitty/templates | |
parent | a1d9f6e422ff41eb57709d12854a01ccd24cf82a (diff) | |
download | hyperkitty-0942d798f6ab24214466a484a21c8085e0ff7807.tar.gz hyperkitty-0942d798f6ab24214466a484a21c8085e0ff7807.tar.xz hyperkitty-0942d798f6ab24214466a484a21c8085e0ff7807.zip |
Improve navigation links
Diffstat (limited to 'hyperkitty/templates')
-rw-r--r-- | hyperkitty/templates/base.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hyperkitty/templates/base.html b/hyperkitty/templates/base.html index 5675db7..7a62c5f 100644 --- a/hyperkitty/templates/base.html +++ b/hyperkitty/templates/base.html @@ -38,8 +38,12 @@ <ul class="nav"> + <li class="root{% if not list_address %} active{% endif %}"> + <a href="{% url root %}">{{ app_name|title }}</a> + </li> + {% if list_address %} - <li id="list_name"> + <li id="list_name" class="active"> <a href="{% url list_overview mlist_fqdn=list_address %}">{{list_address}}</a> </li> {% endif %} |