{% extends "top.html" %} {% block title %}View Users Completed Courses List{% 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 }})
{% endwith %} {% endfor %} {% if users|length != 0 %}
    {% endif %}
    {% endblock %}