diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-04-15 17:15:17 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-04-15 17:15:17 -0400 |
commit | 86bd3d5e4920fd6d57ac51ed3abf02d2f368f2a7 (patch) | |
tree | 7d2f4688eafc26e5ce821d576a4028e986b70f10 /templates/public/index.html | |
parent | 7a8b5707b277f052b712c51574b0e28834b5a5f8 (diff) | |
parent | 5bfe138a86a98b52f0b6746b900af6431cd4d17a (diff) |
Merge tag 'release_2014-11-02' into archweb-generic
Staff groups
Diffstat (limited to 'templates/public/index.html')
-rw-r--r-- | templates/public/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/public/index.html b/templates/public/index.html index 14b93427..6686d7bb 100644 --- a/templates/public/index.html +++ b/templates/public/index.html @@ -174,9 +174,9 @@ <h4>People</h4> <ul> - <li><a href="{% url 'page-devs' %}" title="Active developers">Developers</a></li> - <li><a href="{% url 'page-tus' %}" title="Active Trusted Users (TUs)">Trusted Users</a></li> - <li><a href="{% url 'page-fellows' %}" title="Retired Developers">Fellows</a></li> + {% for group in staff_groups %} + <li><a href="{% url 'people' group.slug %}" title="More info about {{ group.name }}">{{ group.name }}</a></li> + {% endfor %} <li><a href="{% url 'page-keys' %}" title="Package/Database signing master keys">Signing Master Keys</a></li> </ul> |