{% 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.event.description %}{% trans "Additional information:" %}
{{ booking.event.description|linebreaks }} {% endif %} {% if booking.event.pricing %}{% trans "Pricing:" %} {{ booking.event.pricing }}
{% endif %} {% if booking.event.url %} {% firstof event_url_button_label _("More information") as button_label %} {% include "emails/button-link.html" with url=booking.event.url label=button_label %} {% 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 %}