{% extends "top.html" %} {% block title %}Designate Instructor{% endblock %} {% block content %}
Show All

User List

{% if users|length == 0 %}
No User Found
{% endif %} {% for user in users %} {% with isAlt=forloop.counter|divisibleby:"2" %} {{ forloop.counter }}. {{ user.username }} ({{ user.role.name }}) {% if user.role.name == "Participant" or user.role.name == "Instructor" %} {% endif %}
{% endwith %} {% endfor %} {% if users|length != 0 %}
    {% endif %}
    {% endblock %}