{% if header_title %}{{ header_title }}{% else %}{% trans "New booking" %}{% endif %}
{% if intro_copy %}
{{ intro_copy|linebreaks }}
{% else %}
{% trans "A new booking has been made on your site." %}
{% endif %}
| {% if label_datetime %}{{ label_datetime }}{% else %}{% trans "Date & time" %}{% endif %} |
{% if meeting_start %}
{{ meeting_start|date:"l, j F Y" }}
{{ meeting_start|date:"H:i" }} – {{ meeting_end|date:"H:i" }} ({{ timezone }})
{% endif %}
|
{% if booker_name %}
| {% if label_name %}{{ label_name }}{% else %}{% trans "Name" %}{% endif %} |
{{ booker_name }} |
{% endif %}
| {% if label_email %}{{ label_email }}{% else %}{% trans "Email" %}{% endif %} |
{{ booker_email }} |
{% if booker_phone %}
| {% if label_phone %}{{ label_phone }}{% else %}{% trans "Phone" %}{% endif %} |
{{ booker_phone }} |
{% endif %}
{% if booker_company %}
| {% if label_company %}{{ label_company }}{% else %}{% trans "Company" %}{% endif %} |
{{ booker_company }} |
{% endif %}
{% if booker_message %}
| {% if label_message %}{{ label_message }}{% else %}{% trans "Message" %}{% endif %} |
{{ booker_message|linebreaks }} |
{% endif %}
{% if meet_link %}
{% if label_video %}{{ label_video }}{% else %}{% trans "Video call" %}{% endif %}:
{{ meet_link }}
{% endif %}
{% if closing_copy %}
{{ closing_copy|linebreaks }}
{% endif %}
|