{% extends 'ddm_core/page_with_form.html' %} {% load static %} {% block page_title %}Download Donations{% endblock page_title %} {% block main_heading %}Download Donations for {{ participant_id }}{% endblock main_heading %} {% block form_content %}
{{ form.non_field_errors }}

Please provide your password to decrypt the donation. You set this password when you created your project.

{% for field in form %}

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

{% endfor %}
{% 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 form_content %} {% block pre_footer_right %}{% endblock pre_footer_right %} {% block scripts %} {{ block.super }} {% endblock %}