{% extends 'exams/base.html' %} {% load static %} {% block page_title %}Manage Users{% endblock %} {% block content %}
| # | Username | Role | Region/District/Ward/School | Action | |
|---|---|---|---|---|---|
| {{ 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 %} |