summaryrefslogtreecommitdiffstats
path: root/management/templates/users.html
blob: 272d2b453075786937fac4472357c5455a8f56d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends 'base.html' %}

{% block content %}
<div>
    <ul>
        {% for user in users %}
            <li>{{ user.username }}</li>
        {% endfor %}
    </ul>
</div>
{% endblock %}