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/userlist.html | |
parent | 7a8b5707b277f052b712c51574b0e28834b5a5f8 (diff) | |
parent | 5bfe138a86a98b52f0b6746b900af6431cd4d17a (diff) |
Merge tag 'release_2014-11-02' into archweb-generic
Staff groups
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 6292af83..d49a1539 100644 --- a/templates/public/userlist.html +++ b/templates/public/userlist.html @@ -2,16 +2,16 @@ {% load static from staticfiles %} {% load cache %} -{% block title %}{{ BRANDING_DISTRONAME }} - {{ user_type }}{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - {{ 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>{{BRANDING_DISTRONAME}} {{user_type}}</h2> + <h2>{{BRANDING_DISTRONAME}} {{ group.name }}</h2> - <p>{{description}}</p> + <p>{{ group.description }}</p> {% with users as dev_list %} {% include 'public/developer_list.html' %} |