{% extends "base.html" %} {% load staticfiles %} {% block container %}

All users (Without admins)


{% if users.count > 0 %} {% for u in users %}

{{ u.username }}

{% endfor %} {% else %}

There are no users registered

{% endif %}

Admin users


{% if admins.count > 0 %} {% for admin in admins %}

{{ admin.username }}

{% endfor %} {% else %}

There are no admin users registered

{% endif %}
{% endblock container %}