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

Appointments

+ New
{% for appt in appointments %} {% else %} {% endfor %}
TimeCustomerServiceStaffStatusType
{{ appt.start_time.strftime('%I:%M %p') }} {{ appt.customer.name if appt.customer else 'Walk-in' | safe }} {{ appt.service.name if appt.service else '—' }} {{ appt.staff.name if appt.staff else '—' }} {{ appt.status }} {{ 'Walk-in' if appt.is_walk_in else 'Booked' }} View {% if appt.status in ['pending','confirmed','in_progress'] %} Checkout {% endif %}
No appointments for this day.
{% endblock %}