diff options
author | Leif Johansson <leifj@sunet.se> | 2011-02-22 21:12:50 +0100 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2011-02-22 21:12:50 +0100 |
commit | 6244610d840806418bf774bf771b8af28b3a19e0 (patch) | |
tree | ebc6b3d3127db06ddb5fd009e53668c5a59ee09d /templates/base.html | |
parent | 3ff9d9544a047fc65d1666cd68fbd37f1b3aa5eb (diff) |
style cleanup
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/templates/base.html b/templates/base.html index 9716e8e..a212afb 100644 --- a/templates/base.html +++ b/templates/base.html @@ -61,8 +61,10 @@ <div id="container"> <div id="header"> {% if name %} - <div style="float: left;" class="button toolbar"> - <a class="tip" title="This is the full name of the group. This is the name that will be exposed to applications." href="/name/id/{{name.id}}">{{ name }}</a> + <div style="float: left;" class="navlist toolbar"> + <ul> + <li class="button"><a class="tip" title="This is the full name of the group. This is the name that will be exposed to applications." href="/name/id/{{name.id}}">{{ name }}</a></li> + </ul> </div> {% endif %} {% if user.is_authenticated %} @@ -75,6 +77,9 @@ {% if name %} <div class="navlist toolbar"> <ul> + {% if render.add %} + <li class="button"><a href="/name/{{name.id}}/add">New Group</a></li> + {% endif %} {% if render.acl %} <li class="button"><a href="/name/{{name.id}}/link/0">Modify Access</a></li> {% endif %} @@ -84,9 +89,6 @@ {% if render.delete %} <li class="button"><a href="/name/{{name.id}}/delete">Delete</a></li> {% endif %} - {% if render.add %} - <li class="button"><a href="/name/{{name.id}}/add">New Group</a></li> - {% endif %} {% if render.invite %} <li class="button"><a href="/name/{{name.id}}/invite">Invite</a></li> {% endif %} |