{% extends 'dashboard/layout.html' %} {% load dashboard_tags %} {% block body_class %}users{% endblock %} {% block title %} Customers | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header %} {% block dashboard_content %}

Search

{% include "partials/form_fields_inline.html" with form=form %} Reset

{{ queryset_description }}

{% if user_list.count %}
{% csrf_token %} {% for user in user_list %} {% endfor %}
Email First name Last name Active Staff status Date registered Num Orders
{{ user.email }} {{ user.first_name }} {{ user.last_name }} {{ user.is_active }} {{ user.is_staff }} {{ user.date_joined|date:"d/m/y H:s" }} {% num_orders user %} View
{% if page_obj %} {% include "catalogue/partials/pagination.html" %} {% endif %}

Bulk Actions

{% else %}

No customers found.

{% endif %} {% endblock dashboard_content %}