{% load i18n %} {% load widget_tweaks %}

{% trans 'Send by mail' %}

{% if mail_form.recipients %} {% include 'core/bootstrap_form_field.html' with field=mail_form.recipients %} {% endif %} {% if mail_form.recipients_input %} {% with field=mail_form.recipients_input %}
{% if not mail_form.recipients %} {# only show the label no label is shown for the recipients field above #} {% endif %} {% render_field field class="form-control" rows=2 aria-label=field.label %} {% if field.errors %}

{{ field.errors.as_text}}

{% endif %}
{% endwith %} {% endif %}