{% extends 'ddm/admin/base.html' %} {% load static %} {% block page_title %}Project Overview{% endblock %} {% block main_heading %}{{ object.name }}: Project Hub{% endblock %} {% block main_body %} {# PROJECT DETAILS #}
Project Details Edit
Name: {{ object.name }}
Slug: {{ object.slug }}
Public Access: {{ request.scheme }}://{{ request.get_host }}{% url 'briefing' object.slug %}
To test the project yourself from the participants' perspective, open this link in a new private window.
Project Type: {% if object.super_secret %}Super Secret Project{% else %}Regular Project{% endif %}
{# PROJECT CONFIGURATION #}
Project Configuration
Briefing

Define how you will greet and brief your participants.

Data Donation

Configure the data donation and the donation instructions.

Questionnaire

Configure a questionnaire that is displayed after the data donation.

Debriefing

Define how you will debrief your participants.

{# DATA CENTER #}
Data Center
Data Download

Direct Download:
Download Data as JSON

Remote Download:
Manage Access Token

{% with stats=object.get_statistics %}
Project Log
Show Project Log

(Registered Exceptions: {{ stats.n_errors }})

Participation Statistics

Donated Files

{{ stats.n_donations }}

Started

{{ stats.n_started }}

Completed

{{ stats.n_completed }}

Completion Rate

{{ stats.completion_rate|floatformat:2 }}

Avrg. to complete

{{ stats.average_time }}(H:m:s)

{% endwith %}
{# Modal for secret input #} {# Modal for download error #} {% include "ddm/admin/components/info_modal.html" with modal_id="modal-download-error" body="

Download Failed

The download failed due to the following issue: " reload="False" %} {# DANGER ZONE #}
Danger Zone

Delete Project

{# Modal for delete confirm #} {# Modal for participant deletion #} {# Modal for participant delete success #} {% include "ddm/admin/components/info_modal.html" with modal_id="modal-participant-delete-success" body="

Participant Deleted

Participant was successfully deleted." reload="False" %} {# Modal for delete success #} {% include "ddm/admin/components/info_modal.html" with modal_id="modal-delete-success" body="

All data were successfully deleted.

" reload="True" %} {# Modal for delete error #} {% include "ddm/admin/components/info_modal.html" with modal_id="modal-delete-error" body="

An error occurred

Something went wrong during the data deletion: " reload="False" %}
🠐 Back
Your data is being prepared. This may take a few moments.
{% endblock %} {% block breadcrumbs %} Projects / "{{ object.name|truncatechars:15 }}" Project {% endblock %} {% block scripts %} {{ block.super }} {% endblock %}