summaryrefslogtreecommitdiff
path: root/templates/public/userlist.html
blob: d49a15395da1d9b4449ec37cf68ea677a0f9b43c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base.html" %}
{% load static from staticfiles %}
{% load cache %}

{% 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 group.name %}
<div id="dev-tu-profiles" class="box">
    <h2>{{BRANDING_DISTRONAME}} {{ group.name }}</h2>

    <p>{{ group.description }}</p>

    {% with users as dev_list %}
    {% include 'public/developer_list.html' %}
    {% endwith %}
</div>
{% endcache %}
{% endblock %}