{% extends "admin.html" %} {% load staticfiles %} {% block headtitle %}Send Bulk Email - {% endblock %} {% block headscript %} {% endblock %} {% block headscript_multi %}{% endblock %} {% block members_active %}active{% endblock %} {% block content %}
{% csrf_token %} {% for field in form %} {% if field.html_name == 'meeting_booking_type' %}
{% if field.help_text %} {{ field.help_text }} {% endif %}
{% else %} {% include "admin/partials/form-field.html" with form=form %} {% endif %} {% endfor %}
{% for attachment_form in attachment_forms %}
{% include "admin/partials/form.html" with form=attachment_form remove_file=True %}
{% if forloop.last %}

Add Another Attachment

{% endif %} {% endfor %}
{% endblock %}