{% extends "tenant/layouts/base.html" %} {% block title %}Customers{% endblock %} {% block content %}

Customers

New Customer
{% if q %}Clear{% endif %}
{% for c in customers %} {% else %} {% endfor %}
NamePhoneEmailLoyaltyNo-Shows
{{ c.name }} {{ c.phone or '—' }} {{ c.email or '—' }} {{ c.loyalty_points }} pts {% if c.no_show_count > 0 %}{{ c.no_show_count }}{% else %}0{% endif %} Edit
No customers found.
{% endblock %}