summaryrefslogtreecommitdiffstats
path: root/templates/public/userlist.html
blob: 658e64e6255ee7c38978747a0201f91c8aa78368 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "base.html" %}
{% block title %}Arch Linux - {{ user_type }}{% endblock %}

{% block content %}
<div id="dev-tu-profiles" class="box">

    <h2>Arch Linux {{user_type}}</h2>

    <p>{{description}}</p>

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

</div>
{% endblock %}