{% extends "tenant/layouts/base.html" %} {% block title %}Appointments{% endblock %} {% block content %}
| Time | Customer | Service | Staff | Status | Type | |
|---|---|---|---|---|---|---|
| {{ 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. | ||||||