evorepo/templates/public/userlist.html
Dan McGee 5bfe138a86 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>
2014-11-02 10:44:03 -06:00

22 lines
592 B
HTML

{% extends "base.html" %}
{% load static from staticfiles %}
{% load cache %}
{% 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 group.name %}
<div id="dev-tu-profiles" class="box">
<h2>Arch Linux {{ group.name }}</h2>
<p>{{ group.description }}</p>
{% with users as dev_list %}
{% include 'public/developer_list.html' %}
{% endwith %}
</div>
{% endcache %}
{% endblock %}