{% extends "tenant/layouts/base.html" %} {% block title %}{{ customer.name }}{% endblock %} {% block content %}
{{ 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 %}| Date | Service | Staff | Status |
|---|---|---|---|
| {{ 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 }} |