{% extends 'admins/adminbase.html' %} {% load static %} {% block contents %}

User Registry

Manage system access and roles

{{data|length}} Total Users
{% for i in data %} {% empty %} {% endfor %}
# Identity Contact Region Status Actions
{{forloop.counter}}
{{i.name|slice:":1"|upper}}
{{i.name}}
ID: {{i.loginid}}
{{i.email}}
{{i.mobile}}
{{i.locality}} {% if i.status == 'waiting' %} Pending {% else %} Active {% endif %} {% if i.status == 'waiting' %} Approved {% else %} {% endif %}
No users found in the registry.
{% endblock %}