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/userlist.html | |
parent | 0c72812fde64f3ed039d807b9e8b3914960b7d6b (diff) |
Add new StaffGroup object
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/userlist.html')
-rw-r--r-- | templates/public/userlist.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/public/userlist.html b/templates/public/userlist.html index 35104317..b49c5de2 100644 --- a/templates/public/userlist.html +++ b/templates/public/userlist.html @@ -2,16 +2,16 @@ {% load static from staticfiles %} {% load cache %} -{% block title %}Arch Linux - {{ user_type }}{% endblock %} +{% block title %}Arch Linux - {{ group.name }}{% endblock %} {% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen, projection" />{% endblock %} {% block content %} -{% cache 600 dev-tu-profiles user_type %} +{% cache 600 dev-tu-profiles group.name %} <div id="dev-tu-profiles" class="box"> - <h2>Arch Linux {{user_type}}</h2> + <h2>Arch Linux {{ group.name }}</h2> - <p>{{description}}</p> + <p>{{ group.description }}</p> {% with users as dev_list %} {% include 'public/developer_list.html' %} |