{% extends "base.html" %} {% block title %}Customers{% endblock %} {% block page_title %}Customers{% endblock %} {% block page_subtitle %}Manage customer records for {{ SHOP_NAME }}{% endblock %} {% block content %} {% include "partials/breadcrumb.html" %}
{{ form.q }} {{ form.active }} Clear
{% if can_manage %}
Export CSV Add Customer
{% endif %}
{% if page_obj.object_list %}
{% for customer in page_obj %} {% endfor %}
NameMobileWhatsAppAlternateAddress OrdersActiveCreatedActions
{{ customer.name }} {{ customer.mobile_number }} {{ customer.whatsapp_number }} {{ customer.alternate_number|default:"—" }} {{ customer.address_preview }} {{ customer.order_count }} {% if customer.active %}Yes{% else %}No{% endif %} {{ customer.created_at|date:"d M Y" }} View {% if can_manage %} Edit {% endif %} {% if can_book_order and customer.active %} Book Order {% endif %} {% if can_manage %} {% if customer.active %} Deactivate {% endif %} {% endif %}
{% else %} {% include "partials/empty_state.html" with title="No customers found" message="Add your first customer to get started." action_url="/customers/create/" action_label="Add Customer" %} {% endif %}
{% include "partials/pagination.html" %} {% endblock %}