{% extends 'ddm_core/base.html' %} {% load static %} {% block page_title %}Project Overview{% endblock page_title %} {% block main_heading_wrapper %}

{{ object.name }}: Project Hub

{% endblock main_heading_wrapper %} {% block main_body %} {# PROJECT DETAILS #} {% include "ddm_projects/detail_sections/general_details.html" %} {# PROJECT CONFIGURATION #} {% include "ddm_projects/detail_sections/project_configuration.html" %} {# DATA CENTER #} {% include "ddm_projects/detail_sections/data_center.html" %} {# Modal for download error #} {% include "ddm_core/components/info_modal.html" with modal_id="modal-download-error" body="

Download Failed

The download failed due to the following issue: " %} {# DANGER ZONE #} {% include "ddm_projects/detail_sections/danger_zone.html" %}
Back
{# Modal for delete confirm #} {% include "ddm_projects/detail_sections/_delete_data_confirm_modal.html" %} {# Modal for participant deletion #} {% include "ddm_projects/detail_sections/_delete_participant_modal.html" %} {# Modal for participant delete success #} {% include "ddm_core/components/info_modal.html" with modal_id="modal-participant-delete-success" body="

Participant Deleted

Participant was successfully deleted. This page will be reloaded in a few seconds." %} {# Modal for delete success #} {% include "ddm_core/components/info_modal.html" with modal_id="modal-delete-success" body="

All data were successfully deleted. This page will be reloaded in a few seconds.

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

An error occurred

Something went wrong during the data deletion: " %} {# Download Overlay #} {% include "ddm_projects/detail_sections/_download_overlay.html" %} {% endblock main_body %} {% block breadcrumbs %} Projects "{{ object.name|truncatechars:15 }}" Project {% endblock breadcrumbs %} {% block scripts %} {{ block.super }} {% endblock scripts %}