{% extends "base.html" %} {% block title %}{% if pending %}{{ t("confirmed-page-title-pending") }}{% else %}{{ t("confirmed-page-title-booked") }}{% endif %}{% endblock %} {% block content %}
{% if rescheduled is defined and rescheduled and pending %}
🔄

{{ t("confirmed-heading-reschedule-requested") }}

{{ t("confirmed-subtitle-reschedule-requested", host=host_name, email=guest_email) }}

{% elif rescheduled is defined and rescheduled %}
🔄

{{ t("confirmed-heading-rescheduled") }}

{{ t("confirmed-subtitle-rescheduled", email=guest_email) }}

{% elif pending %}

{{ t("confirmed-heading-pending") }}

{{ t("confirmed-subtitle-pending", host=host_name, email=guest_email) }}

{% else %}

{{ t("confirmed-heading-booked") }}

{{ t("confirmed-subtitle-booked", email=guest_email) }}

{% endif %}
{{ t("confirmed-detail-event") }} {{ event_title }}
{{ t("confirmed-detail-date") }} {{ date_label }}
{{ t("confirmed-detail-time") }} {{ time_start }}{{ time_end }}
{{ t("confirmed-detail-with") }} {{ host_name }}
{% if location_value and not pending %}
{{ t("confirmed-detail-location") }} {% if location_type == "link" %}{{ location_value }}{% else %}{{ location_value }}{% endif %}
{% endif %} {% if notes %}
{{ t("confirmed-detail-notes") }} {{ notes }}
{% endif %} {% if additional_attendees is defined and additional_attendees %}
{{ t("confirmed-detail-additional-guests") }} {{ additional_attendees | join(", ") }}
{% endif %} {% if cancel_notice_min is defined and cancel_notice_min and cancel_notice_min > 0 %}

{{ t("confirmed-cancel-notice-info", minutes=cancel_notice_min) }}

{% endif %} {% if reschedule_notice_min is defined and reschedule_notice_min and reschedule_notice_min > 0 %}

{{ t("confirmed-reschedule-notice-info", minutes=reschedule_notice_min) }}

{% endif %}
{% if team_slug %}← {{ t("confirmed-book-another") }} {% elif username %}← {{ t("confirmed-book-another") }}{% endif %}
{% endblock %}