summaryrefslogtreecommitdiffstats
path: root/templates/public/userlist.html
blob: ce8cb145a762cc5f05ef22e8592893e7de1eafde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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 %}