evorepo/templates/public/userlist.html
Dan McGee 31b38b49c3 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>
2010-01-31 22:55:49 -06:00

14 lines
275 B
HTML

{% 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 %}