diff options
author | Dan McGee <dan@archlinux.org> | 2010-02-01 05:55:49 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-02-01 05:55:49 +0100 |
commit | 31b38b49c3736c5dcd139fa63ab06ad211aa25a1 (patch) | |
tree | e3a0344a856f061edb86924185d1522b5c39e27d /templates/public/userlist.html | |
parent | de780492ef3f3a625ae4dca22c1dbee7a36bc16d (diff) | |
download | archweb-31b38b49c3736c5dcd139fa63ab06ad211aa25a1.tar.gz archweb-31b38b49c3736c5dcd139fa63ab06ad211aa25a1.tar.xz |
Spruce up the developer view pages
Quite a few changes here. Unify the developer view pages into one actual
django view and template, and use different dispatches from urls.py to set
up the three different queries for who to display and what message and group
name to show.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/public/userlist.html')
-rw-r--r-- | templates/public/userlist.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/public/userlist.html b/templates/public/userlist.html new file mode 100644 index 0000000..ce8cb14 --- /dev/null +++ b/templates/public/userlist.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} + +{% block content %} +<div class="box"> + <h2 class="title">Arch Linux {{user_type}}</h2> + <p>{{description}}</p> + {% with users as dev_list %} + {% include 'public/developer_list.html' %} + {% endwith %} +</div> +<br /><br /> +{% endblock %} + |