User List
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 %}