chrono/chrono/agendas/templates/agendas/meetings_reminder_body.html

29 lines
878 B
HTML

{% extends "emails/body_base.html" %}
{% load i18n %}
{% block content %}
<p>{% trans "Hi," %}</p>
<p>
{% 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 %}
</p>
{% if email_extra_info %}
<p>{{ email_extra_info|force_escape|linebreaks }}</p>
{% 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 %}