{% extends 'ddm_core/page_with_form.html' %} {% load static %} {% block page_title %}Edit Uploader{% endblock %} {% block main_heading %}Edit Uploader "{{ object.name }}"{% endblock %} {% block submit_label %}Save Uploader{% endblock %} {% block main_form %}
{% csrf_token %} {{ form.media }} {{ form.non_field_errors }} {# Base Settings #} {% with content_include_path="ddm_datadonation/uploader/form_sections/general_settings.html" %} {% with accordion_description="Name and upload type configuration" %} {% include "ddm_core/components/accordion_card.html" with extra_classes="mb-4" accordion_id="GeneralSettings" accordion_title="General Settings" is_expanded=True %} {% endwith %} {% endwith %} {# Layout Settings #} {% with content_include_path="ddm_datadonation/uploader/form_sections/display_settings.html" %} {% with accordion_description="What participants see on the donation page" %} {% include "ddm_core/components/accordion_card.html" with extra_classes="mb-4" accordion_id="DisplaySettings" accordion_title="Display Settings" is_expanded=True %} {% endwith %} {% endwith %} {# Consent Settings #} {% with content_include_path="ddm_datadonation/uploader/form_sections/consent_settings.html" %} {% with accordion_description="How participants give consent for their data" %} {% include "ddm_core/components/accordion_card.html" with extra_classes="mb-4" accordion_id="ConsentSettings" accordion_title="Consent Settings" is_expanded=True %} {% endwith %} {% endwith %} {# Associated Blueprints #} {% with content_include_path="ddm_datadonation/uploader/form_sections/associated_blueprints.html" %} {% with accordion_description="Which Blueprints belong to this Uploader" %} {% include "ddm_core/components/accordion_card.html" with extra_classes="mb-4" accordion_id="AssociatedBlueprints" accordion_title="Associated Blueprints" is_expanded=True %} {% endwith %} {% endwith %}
Delete Uploader
{% endblock %} {% block breadcrumbs %} Projects "{{ project.name|truncatechars:15 }}" Project Data Donation Edit Uploader {% endblock %} {% block scripts %} {{ block.super }} {% endblock scripts %}