{% extends 'partials/base.html' %} {% load static %} {% load humanize %} {% load crispy_forms_tags %} {% block extra_css %} {% endblock extra_css %} {% block contents %}
{% for customers in page_obj %} {% endfor %}
# Username Phone / Email Address Rating Wallet Balance Joining Date Action
{{customers.username}}

{{customers.phone}}

{{customers.email}}

{{customers.address}} {{customers.rating}} $ {{customers.wallet_balance|intcomma}} {{customers.joining_date|date:"d M, Y"}}
  • {% if page_obj.has_previous %} {% endif %}
  • {% for i in page_obj.paginator.page_range %}
  • {{i}}
  • {% endfor %}
  • {% if page_obj.has_next %} {% endif %}
{% endblock %} {% block extra_javascript %} {% endblock %}