{% extends "base.html" %} {% load static %} {% block title %}Users{% endblock %} {% block content %}
Manage Users
{% comment %} {% endcomment %}
{% for user in user_data_list %} {% empty %} {% endfor %}
# Username Designation Contact No Email Status Action
{{ forloop.counter }} {{ user.username }} {{ user.designation }} {{ user.contact_no }} {{ user.email }} {% if user.is_active %} Active {% else %} Inactive {% endif %}
No users found.
{% endblock %} {% block extra_js %} {% endblock %}