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

{{ customer.name }}

Edit New Appointment

{{ customer.phone or '—' }}

{{ customer.email or '—' }}

{% if customer.date_of_birth %}

{{ customer.date_of_birth.strftime('%B %d') }}

{% endif %}

{{ customer.loyalty_points }} loyalty points

{% if customer.no_show_count > 0 %}

{{ customer.no_show_count }} no-show(s)

{% endif %} {% if customer.notes %}

{{ customer.notes }}

{% endif %}
Recent Appointments
{% if appointments %}
{% for a in appointments %} {% endfor %}
DateServiceStaffStatus
{{ a.start_time.strftime('%Y-%m-%d %I:%M %p') }} {{ a.service.name if a.service else '—' }} {{ a.staff.name if a.staff else '—' }} {{ a.status }}
{% else %}
No appointments yet.
{% endif %}
Back {% endblock %}