{% extends "users/base.html" %} {% load static %} {%block styles %} {% endblock styles %} {% block title %} User List {% endblock title %} {% block content %}

All Users

{% if "archive" in request.path %} See All Users {% else %} See Archived Users {% endif %}
{% for user in users_list %} {% endfor %}
SN First Name Last Name Email Phone Actions
{{forloop.counter}} {{user.first_name}} {{user.last_name}} {{user.email}} {{user.phone}}
{% if "archive" in request.path %} Undo Delete Permanent Delete {% else %} View Edit Delete {% endif %}
{% endblock content %}