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

My Schedule — Next 7 Days

{% if appointments %}
{% for a in appointments %} {% endfor %}
DateTimeCustomerServiceStatus
{{ a.start_time.strftime('%b %d') }} {{ a.start_time.strftime('%I:%M %p') }} {{ a.customer.name if a.customer else 'Walk-in' }} {{ a.service.name if a.service else '—' }} {{ a.status }}
{% else %}
No upcoming appointments in the next 7 days.
{% endif %} Back {% endblock %}