{% 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" %}
| Name | Mobile | Alternate | Address | Orders | Active | Created | Actions | |
|---|---|---|---|---|---|---|---|---|
| {{ 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 %} |