{% extends "orga/mails/base.html" %} {% load i18n %} {% load render_table from django_tables2 %} {% block mail_content %} {% if failed_count %}
{% blocktranslate trimmed count count=failed_count %} {{ count }} email failed to send. {% plural %} {{ count }} emails failed to send. {% endblocktranslate %} {% translate "Show failed" %} {% translate "Retry all failed" %}
{% endif %}

{{ page_obj.paginator.count }} {% blocktranslate trimmed count count=page_obj.paginator.count %} pending email {% plural %} pending emails {% endblocktranslate %}

{% include "common/includes/search_form.html" with omit_wrapper=True %}
{% if page_obj.paginator.count %}
{% if page_obj.has_other_pages %} {% translate "Send all on this page" %} {% endif %} {% translate "Send all" %} {% translate "Discard all" %}
{% if is_filtered %}
{% translate "The current filters will be used when sending/discarding emails." %}
{% endif %}
{% endif %}
{% render_table table %} {% endblock mail_content %}