{% extends "emails/body_base.txt" %}
{% load i18n %}

{% block content %}{% autoescape off %}{% trans "Hi," %}

{% blocktrans trimmed with event=booking.event date=date|date:"l j F" time=date|time %}
You have booked 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 }}
{% endif %}
{% if booking.event.pricing %}
{% trans "Pricing:" %} {{ booking.event.pricing }}
{% endif %}
{% if booking.event.url %}
{% trans "More information:" %} {{ booking.event.url }}
{% endif %}
{% if booking.form_url %}
{% trans "If in need to cancel it, you can do so here:" %} {{ booking.get_form_url }}
{% endif %}
{% endautoescape %}
{% endblock %}
