diff options
author | Dan McGee <dan@archlinux.org> | 2014-11-02 10:43:09 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2014-11-02 10:44:03 -0600 |
commit | 5bfe138a86a98b52f0b6746b900af6431cd4d17a (patch) | |
tree | dd10f445fe972c93aafe5ca56d86530a5ac042a2 /templates/public/index.html | |
parent | 0c72812fde64f3ed039d807b9e8b3914960b7d6b (diff) |
Add new StaffGroup objectrelease_2014-11-02
This will allow us to be a bit more dynamic in showing the people
listings on the website. We'll be adding a Support Staff category to
recognize those that do things around here but aren't technically
developers.
Signed-off-by: Dan McGee <dan@archlinux.org>
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 3b17803c..c78303ce 100644 --- a/templates/public/index.html +++ b/templates/public/index.html @@ -172,9 +172,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> |