From 31b38b49c3736c5dcd139fa63ab06ad211aa25a1 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sun, 31 Jan 2010 22:55:49 -0600 Subject: 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 --- templates/public/userlist.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 templates/public/userlist.html (limited to 'templates/public/userlist.html') 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 %} +
+

Arch Linux {{user_type}}

+

{{description}}

+ {% with users as dev_list %} + {% include 'public/developer_list.html' %} + {% endwith %} +
+

+{% endblock %} + -- cgit v1.2.3-24-g4f1b