{% extends 'ddm_core/base.html' %} {% block page_title %}Donation Instructions{% endblock page_title %} {% block main_heading %}Instructions{% endblock main_heading %} {% block sub_heading %}

Number of pages: {{ instructions | length }}

Create New Instruction

{% endblock sub_heading %} {% block main_body %} {% for page in instructions %}
{% url 'ddm_datadonation:instructions:edit' project_url_id file_uploader.pk page.pk as edit_url %} {% url 'ddm_datadonation:instructions:delete' project_url_id file_uploader.pk page.pk as delete_url %} {% with page_number=page.index|stringformat:"s" %} {% with content=page.text|safe accordion_id="Page"|add:page_number title="Page "|add:page_number %} {% include "ddm_core/components/accordion_card.html" with extra_classes="narrow-accordion mb-0" accordion_id=accordion_id accordion_title=title is_expanded=True %} {% endwith %} {% endwith %}
Edit Delete
{% endfor %}
Back
{% endblock main_body %}