{% extends "dashboard_base.html" %} {% block title %}Bookings — calrs{% endblock %} {% block dashboard_content %} {% if pending_bookings %}

Pending approval

{% for b in pending_bookings %}
{{ b.event_title }} with {{ b.guest_name }}
{{ b.start_at }} · {{ b.guest_email }}
{% if b.start_at_guest %}
Guest booked: {{ b.start_at_guest }}
{% endif %}
Reschedule
{% endfor %}
{% endif %} {% if claimable_bookings is defined and claimable_bookings %}

Available to claim

{% for b in claimable_bookings %}
{{ b.event_title }} with {{ b.guest_name }} {{ b.team_name }}
{{ b.start_at }} · {{ b.guest_email }}
{% if b.start_at_guest %}
Guest booked: {{ b.start_at_guest }}
{% endif %}
{% endfor %}
{% endif %}

Upcoming bookings

{% if bookings %} {% for b in bookings %}
{{ b.event_title }} with {{ b.guest_name }} {% if b.awaiting_reschedule is defined and b.awaiting_reschedule %} awaiting reschedule {% endif %}
{{ b.start_at }} · {{ b.guest_email }}
{% if b.start_at_guest %}
Guest booked: {{ b.start_at_guest }}
{% endif %}
{% if not (b.awaiting_reschedule is defined and b.awaiting_reschedule) %} Reschedule {% endif %}
{% endfor %} {% else %}
📋
No upcoming bookings yet.
Share your event type links so people can book time with you.
{% endif %}
{% endblock %}