{% extends 'root/base.html' %} {% load static %} {% block title %} Users Report (Admin Tool) {% endblock %} {% block maincontent %} {% include 'root/loader.html' %}

Users Report


{% csrf_token %} {{ user_rep_form.non_field_errors }}
{{ user_rep_form.userrep_type }}
{{ user_rep_form.company_code }}
{{ user_rep_form.username }}

{% if t_count > 0 %}
Total number of results found :{{t_count}}
{% endif %} {% if t_count == 0 %}
No Results Found
{% endif %}
{% if t_count > 0 %} {% if final_list %}
{% for acc in final_list %} {% endfor %}
Username First Name Last Name Email Company Number Company Name User Lock Status
{{acc.2}} {{acc.4}} {{ acc.3 }} {{acc.5}} {{ acc.0 }} {{ acc.1 }} {% if acc.6 %} {% else %} {% endif %}
{% endif %} {% endif %}
 
{% if inc_footer %} {% include 'root/footer.html' %} {% endif %} {% endblock %}