{% extends 'layout/default.html' %} {% load i18n %} {% block title %}{% translate "User List" %}{% endblock %} {% block breadcumbheading %} {% translate "Manage Users" %} {% endblock %} {% block breadcumbfirst %} Manage Users {% endblock %} {% block breadcumbaddmore %}
| ID | NAME | PHONE | ROLE | STATUS | ACTIONS | |
|---|---|---|---|---|---|---|
| {% if user.userinfo.first_name %}{{ user.userinfo.first_name }} {{ user.userinfo.last_name }}{%else%}-{%endif%} | {{ user.email }} | {% if user.userinfo.phone1 %}{{ user.userinfo.phone1}}{%else%}-{%endif%} | {% if user.is_superuser %}Super Admin {% else %} {{user.get_role_names }}{%endif%} | {% if user.userinfo.get_status == 'Active' %} {{ user.userinfo.get_status }} {% else %} {{ user.userinfo.get_status }} {% endif %} | {% if not user.is_superuser %} Select {% else %} - {% endif %} |