{% extends 'adminpanel/inc/layout.html'%}
{% load static%}
{% load query_params%}
{% block title%} Users{% endblock %}
{% block bodyclass%}hold-transition skin-light-blue sidebar-mini{% endblock %}
{% block body%}
First Name |
Last Name |
Email |
Status |
User Type |
Created At |
Action |
{% for obj in userslist %}
{{obj.first_name}} |
{{obj.last_name}} |
{{obj.email}} |
{% if obj.is_active == 0 %} Deactive {%else%} Active {% endif %} |
{% if obj.is_staff == 0 %} Seller {% elif obj.is_staff == 1%} Agent {% else %} Admin {% endif %} |
{{obj.date_joined}} |
|
{% endfor %}
Showing {{ userslist.number }} to {{ userslist.paginator.num_pages }} of {{ userslist.paginator.num_pages }} records .
{% endblock %}