{% extends 'ddm_core/base.html' %} {% block page_title %}Data Donation Overview{% endblock %} {% block main_heading %}Data Donation Overview{% endblock %} {% block main_body %}

Data donations from participants are collected through Uploaders. Each Uploader is associated with a set of Donation Instructions and one or multiple File Blueprints.

{% include "ddm_core/components/info_collapsible.html" with element_id="ulbps" title="More about Uploaders and File Blueprints" include_path="ddm_datadonation/text_uploader_and_blueprints.html" body="" %}
Uploader Configuration
{% for uploader in file_uploaders %} {% empty %} {% endfor %}
Index Uploader Upload Type Donation Instructions Associated Blueprints
{{ uploader.index }} {{ uploader.name }} (Edit | Delete) {{ uploader.upload_type }} Edit Instructions {% if uploader.donationblueprint_set.all %}
    {% for blueprint in uploader.donationblueprint_set.all %}
  • {{ blueprint.name }} (Edit | Delete)
  • {% endfor %}
{% else %} No associated Blueprints {% endif %}
You have yet to create an Uploader for this project.
+  Create new Uploader +  Create new File Blueprint
Unassociated File Blueprints
{% for blueprint in lonely_blueprints %} {% empty %} {% endfor %}
Name
{{ blueprint.name }} Edit | Delete
No unassociated File Blueprints.
+  Create new File Blueprint
🠐 Back
{% endblock %} {% block breadcrumbs %} Projects / "{{ project.name|truncatechars:15 }}" Project / Data Donation Overview {% endblock %}