{% extends 'exams/base.html' %} {% load static %} {% block page_title %}Manage Users{% endblock %} {% block content %}

Manage Users

{% csrf_token %}
{% csrf_token %}
{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}
Showing page {{ users.number }} of {{ users.paginator.num_pages }}
{% for u in users %} {% endfor %}
#UsernameEmailRoleRegion/District/Ward/SchoolAction
{{ forloop.counter }} {{ u.username }} {{ u.email }} {% if u.profile %} {{ u.profile.role }} {% else %} {% endif %} {% if u.profile %} {% if u.profile.region %} {{ u.profile.region.name }} {% else %} — {% endif %} / {% if u.profile.district %} {{ u.profile.district.name }} {% else %} — {% endif %} / {% if u.profile.ward %} {{ u.profile.ward.name }} {% else %} — {% endif %} / {% if u.profile.school %} {{ u.profile.school.name }} {% else %} — {% endif %} {% else %} No profile {% endif %}
Showing page {{ users.number }} of {{ users.paginator.num_pages }}
{% endblock %}