{% extends "base.html" %} {% block title %}{{ t("book-page-title", title=event_type.title) }}{% endblock %} {% block content %} {# Compute base path: /t/token, /team/team_slug/slug, /u/username/slug, or /slug #} {% if team_token is defined and team_token %} {% set base = "/t/" ~ team_token %} {% elif team_slug is defined and team_slug %} {% set base = "/team/" ~ team_slug ~ "/" ~ event_type.slug %} {% elif username is defined and username %} {% set base = "/u/" ~ username ~ "/" ~ event_type.slug %} {% else %} {% set base = "/" ~ event_type.slug %} {% endif %} ← {{ t("book-back-to-times") }}

{{ event_type.title }}

{{ event_type.duration_min }} min {{ host_name }} {% if event_type.location_value %} {% if event_type.location_type is defined and event_type.location_type == "in_person" %} {{ event_type.location_value }} {% else %} {% if event_type.location_type == "link" %}{{ t("slots-location-video") }}{% elif event_type.location_type == "phone" %}{{ t("slots-location-phone") }}{% else %}{{ event_type.location_type }}{% endif %} {% endif %} {% endif %}
{{ date_label }} · {{ time_start }}{{ time_end }}
{% if error %}
{{ error }}
{% endif %}
{% if guest_tz is defined and guest_tz %}{% endif %} {% if invite_token is defined and invite_token %}{% endif %}
{% if max_additional_guests is defined and max_additional_guests > 0 %}
{% endif %}
{% endblock %}