{% extends 'base.html' %} {% load static %} {% block title %} All Companies {% endblock %} {% block css %} {% endblock %} {% block content %}
{% include 'admin_header.html' %}
{% include 'admin_sidebar.html' %}
{% csrf_token %} {% if all_customers %} {% for customer in all_customers %} {% endfor %} {% endif %}
Serial No. Name Email Address Phone Number Email Verified Disabled Created At Action
{{customer.serialno}} {{customer.name}} {{customer.email}} {{customer.countrycode}} {{customer.phone}} {{customer.emailverified}} {{customer.isdisabled}} {{customer.created_at}} {% ifequal customer.isdisabled 'Yes' %} {% else %} {% endifequal %}
{% if all_customers.has_other_pages %}
    {% if all_customers.has_previous %}
  • «
  • {% else %}
  • «
  • {% endif %} {% for i in all_customers.paginator.page_range %} {% if all_customers.number == i %}
  • {{ i }} (current)
  • {% else %}
  • {{ i }}
  • {% endif %} {% endfor %} {% if all_customers.has_next %}
  • »
  • {% else %}
  • »
  • {% endif %}
{% endif %}
{% include 'admin_footer.html' %}
{% endblock %} {% block js %} {% endblock %}