{% extends 'root.html' %} {% load static %} {% block content %}

Users

{% for user in users %} {% if user.is_active == True %} {% else %} {% endif %} {% endfor %}
Username First Name Last Name Phone Company Role Last Login Active Action
{{ user.username}} {{ user.first_name}} {{ user.last_name}} {{ user.phone}} {{ user.companyLocation.name}} {{ user.roles.name}} {{ user.last_login}}
{% endblock content %} {% block modal %} # Edit Modal # Delete Modal {% endblock modal %} {% block script %} {% endblock script %}