{% load staticfiles %} {% include "includes/base.html" %} {% include "includes/navbarheader.html" %} {% include "includes/navtop.html"%} {% include "includes/sidemenu.html" %}

Users Information


{% if error_msg %}
{{error_msg}}
{% endif %}
List of all Users Signed In
{% for user in users %} {% endfor %}
ID First Name Last Name Email Contact Address Status
{{user.id}} {{user.customer.first_name}} {{user.customer.last_name}} {{user.customer.email}} {{user.contact}} {{user.address}} {% if user.status == 'Verified' %} Verified {% else %} Pending {% endif %}