{% extends "tenant/layouts/base.html" %} {% block title %}Appointment #{{ appointment.id }}{% endblock %} {% block content %}

Appointment #{{ appointment.id }}

Edit {% if appointment.status in ['pending','confirmed','in_progress'] %} Checkout {% endif %}
Customer
{{ appointment.customer.name if appointment.customer else 'Walk-in' }}
Service
{{ appointment.service.name if appointment.service else '—' }}
Staff
{{ appointment.staff.name if appointment.staff else '—' }}
Start
{{ appointment.start_time.strftime('%Y-%m-%d %I:%M %p') }}
End
{{ appointment.end_time.strftime('%I:%M %p') if appointment.end_time else '—' }}
Type
{{ 'Walk-in' if appointment.is_walk_in else 'Booked' }}
Source
{{ appointment.rebook_source or 'manual' }}
{% if appointment.notes %}
Notes
{{ appointment.notes }}
{% endif %}
Update Status
Back to Calendar {% endblock %}