{% extends "emails/body_base.html" %} {% load i18n %} {% block content %}

{% trans "Hi," %}

{% with date=date|date:"l j F" time=date|time %} {% if booking.user_display_label %} {% blocktrans trimmed with meeting=booking.user_display_label %} Your meeting "{{ meeting }}" is scheduled on {{ date }} at {{ time }}. {% endblocktrans %} {% else %} {% blocktrans %}You have a meeting scheduled on {{ date }} at {{ time }}.{% endblocktrans %} {% endif %} {% endwith %}

{% if email_extra_info %}

{{ email_extra_info|force_escape|linebreaks }}

{% endif %} {% if booking.form_url %} {% with _("Edit or cancel meeting") as button_label %} {% include "emails/button-link.html" with url=booking.get_form_url label=button_label %} {% endwith %} {% endif %} {% endblock %}