{% extends "massmailer/common.html" %} {% load i18n l10n static %} {% load django_bootstrap_breadcrumbs crispy_forms_tags %} {% block title %}{% trans "Batches" %} – {{ block.super }}{% endblock %} {% block breadcrumbs %} {{ block.super }} {% breadcrumb_for 'massmailer:batch:list' %}{% trans "Batches" %}{% endbreadcrumb_for %} {% endblock %} {% block content %}

{% trans "Batches" %}

{% trans "New batch" %} {% include "massmailer/stub_pagination.html" %} {% for batch in batches %} {% empty %} {% endfor %}
{% trans "ID" %} {% trans "Initiator" %} {% trans "Created" %} {% trans "Template" %} {% trans "Query" %} {% trans "Progress" %}
{{ batch }} {% if batch.initiator %}{{ batch.initiator.username }}{% endif %} {{ batch.date_created|date:'SHORT_DATETIME_FORMAT' }} {{ batch.template }} {{ batch.query }} {% if batch.completed %} {% else %}
{% csrf_token %}
{% endif %}
{{ batch.email_count }} ⋅ {{ batch.pending_email_count }} ⋅ {{ batch.sending_email_count }} ⋅ {{ batch.sent_email_count }} ⋅ {{ batch.bounced_email_count }} ⋅ {{ batch.complained_email_count }}
{% localize off %}
{% endlocalize %}
{% trans "There is no batch yet." %}
{% include "massmailer/stub_pagination.html" %} {% endblock %}