Bookings (Preview)

This will show real bookings after backend connection.

New Booking
{% if bookings %} {% for b in bookings %} {% endfor %} {% else %} {% endif %}
Date Subject Tutor Status Action
#{{ b.id }} {{ b.service }} {{ b.subject|default:b.exam|default:"-" }} {{ b.get_status_display }} {{ b.preferred_date|default:"-" }} {{ b.preferred_time }} New
No bookings yet. Create one.
{% for b in bookings %}

Booking #{{ b.id }} • {{ b.status|default:"new" }}

{{ b.subject|default:"Tutoring" }}{% if b.created_at %} • {{ b.created_at|date:"M d, Y" }}{% endif %}

Tutor
{% if b.tutor %}{{ b.tutor.get_full_name|default:b.tutor.username }}{% else %}Not assigned{% endif %}
Scheduled
{% if b.scheduled_at %}{{ b.scheduled_at|date:"M d, Y, P" }}{% else %}—{% endif %}
Amount
{% if b.amount %}{{ b.amount }}{% else %}—{% endif %}
{% empty %}
No bookings yet.
{% endfor %}