{% extends 'ddm_core/base.html' %} {% load static %} {% block page_title %}Project Overview{% endblock page_title %} {% block main_heading %}{{ object.name }}{% endblock main_heading %} {% block sub_heading %}Project Hub{% endblock sub_heading %} {% block main_body %} {# PROJECT DETAILS #} {% include "ddm_projects/project_detail/general_details.html" %} {# PROJECT CONFIGURATION #} {% include "ddm_projects/project_detail/project_configuration.html" %} {# DATA COLLECTION CONFIGURATION #} {% include "ddm_projects/project_detail/data_collection_configuration.html" %} {# DATA CENTER #} {% include "ddm_projects/project_detail/data_center.html" %} {# LOGS #} {% include "ddm_projects/project_detail/logs.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/project_detail/danger_zone.html" %} {# Modal for delete confirm #} {% include "ddm_projects/project_detail/_delete_data_confirm_modal.html" %} {# Modal for participant deletion #} {% include "ddm_projects/project_detail/_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/project_detail/_download_overlay.html" %} {% endblock main_body %} {% block scripts %} {{ block.super }} {% endblock scripts %}