10 lines
154 B
Plaintext
10 lines
154 B
Plaintext
|
{% include 'header.html' %}
|
||
|
|
||
|
{% for user in users %}
|
||
|
* {{ user.name }}
|
||
|
{% else %}
|
||
|
No users have been found.
|
||
|
{% endfor %}
|
||
|
|
||
|
{% include 'footer.html' %}
|