{% extends "wagtailadmin/base.html" %} {% load i18n modeladmin_tags %} {% block titletag %}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 %}
  • Send to a subset of contacts?
  • {% for field in form %} {% include 'wagtailadmin/shared/field.html' with field=field %} {% endfor %} {% endif %}
  • No, don't send
{% endblock %} {% endblock %}