{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% csrf_token %}
{% if object.sent %}
{% trans "This campaign has already been sent at least once. Are you sure that you want to send it again?" %}
{% endif %}

{% blocktrans with opts.verbose_name|capfirst as model_name and object|truncatewords:"18" as object_name %} Clicking 'Send' below will send the {{ object_name }} {{ model_name }} to its recipients. {% endblocktrans %}

{% trans "Subscriber lists" %}

    {% for subscriber_list in object.recipients.all %} {% with subscriber_list.object_count as subscribercount %}
  • {{ subscriber_list.name }} – {% blocktrans with subscribercount as subscriber_count and subscribercount|pluralize as pluralized %}{{ subscriber_count }} recipient{{ pluralized }}{% endblocktrans %}
  • {% endwith %} {% endfor %}

{% endblock %}