chrono/chrono/agendas/templates/agendas/events_reminder_body.html

37 lines
1.1 KiB
HTML

{% extends "emails/body_base.html" %}
{% load i18n %}
{% block content %}
<p>{% trans "Hi," %}</p>
<p>
{% 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 %}
</p>
{% if email_extra_info %}
<p>{{ email_extra_info|force_escape|linebreaks }}</p>
{% endif %}
{% if booking.event.description %}
<p>{% trans "Additional information:" %}</p>
{{ booking.event.description|linebreaks }}
{% endif %}
{% if booking.event.pricing %}
<p>{% trans "Pricing:" %} {{ booking.event.pricing }}</p>
{% 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.get_form_url label=button_label %}
{% endwith %}
{% endif %}
{% endblock %}