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

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

{% with date=date|date:"l j F" time=date|time %}
{% if booking.get_display_label %}
{% blocktrans trimmed with meeting=booking.get_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 %}

{% if email_extra_info %}{{ email_extra_info }}{% endif %}

{% if booking.form_url %}
{% trans "If in need to cancel it, you can do so here:" %} {{ booking.get_form_url }}
{% endif %}
{% endautoescape %}
{% endblock %}
