{% extends 'ddm/admin/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.

Uploader

An Uploader can either be configured to expect a single file (e.g., one JSON file) or a ZIP container as a donation.
Each Uploader can be assigned one or multiple File Blueprints.
Usually, a File Uploader relates to one data export (e.g., to a Google Data Takeout or a TikTok Data Takeout).

File Blueprint

A File Blueprint defines how the data contained in a single file (e.g., in a .json or a .csv file) will be validated and extracted.
If a File Blueprint is assigned to a ZIP Uploader, an additional path must be provided that defines where the file is located within the ZIP container. The validation and extraction logic will then be applied to the first file in a ZIP container that matches this file path.

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 %}