{% extends 'ddm_core/page_with_form.html' %} {% load static %} {% block page_title %}Download Donations{% endblock %} {% block main_heading %}Download Donations for {{ participant_id }} {% endblock %} {% block main_top %} Please provide your secret to decrypt the donation. You defined this secret when you created your project. {% endblock %} {% block main_form %}
{% csrf_token %} {{ form.media }}
{% if form.errors %}

The form could not be processed. Please check the issues highlighted below.

{% endif %} {{ form.non_field_errors }}
{% for field in form %}

{{ field.label_tag }} {{ field.help_text|safe }} {{ field.errors }} {{ field }}

{% endfor %} {% block cancel %}

🠐 Cancel

{% endblock %}
{% endblock %} {% block main_bottom %} {% include "ddm_core/components/info_modal.html" with modal_id="modal-download-success" body="

Download Successful.

" %} {% include "ddm_core/components/info_modal.html" with modal_id="modal-download-error" body="

Download Failed

" %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block scripts %} {{ block.super }} {% endblock %}