{% extends "wagtailadmin/base.html" %} {% load i18n modeladmin_tags %} {% block titletag %}{% trans "Send Campaign" %}{% endblock %} {% block content %} {% block header %} {% include "wagtailadmin/shared/header.html" with title="Send" subtitle=self icon=view.header_icon %} {% endblock %} {% block content_main %}
{% csrf_token %}
    {% if form %}
  • {% trans "Send to a subset of contacts?" %}
  • {% for field in form %} {% include "wagtailadmin/shared/field.html" with field=field %} {% endfor %} {% endif %}
  • {% trans "No, don't send" %}
{% endblock %} {% endblock %}