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

{% trans "Hi," %}

{% blocktrans trimmed with event=booking.event date=date|date:"l j F" time=date|time %} You have a booking for event "{{ event }}", on {{ date }} at {{ time }}. {% endblocktrans %}

{% if email_extra_info %}

{{ email_extra_info }}

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