{% extends 'ddm/admin/generic/page_with_form.html' %} {% block page_title %}Create New Project{% endblock %} {% block main_heading %}Create Donation Project {{ object.name }}{% endblock %} {% block main_form %}
{% csrf_token %} {{ form.media }} {{ form.non_field_errors }}

{{ form.name.errors }} {{ form.name.help_text|safe }} {{ form.name }}

{{ form.slug.errors }} {{ form.slug.label_tag }} {{ form.slug.help_text|safe }} {{ form.slug }}

{{ form.contact_information.errors }} {{ form.contact_information.label_tag }} {{ form.contact_information.help_text|safe }} {{ form.contact_information }}

{{ form.data_protection_statement.errors }} {{ form.data_protection_statement.label_tag }} {{ form.data_protection_statement.help_text|safe }} {{ form.data_protection_statement }}

{{ form.owner }}

Is this a super secret project?

Attention: Data donated to a super secret project will be stored with improved encryption and data decryption will only be possible if the project password is supplied. For most projects this will not be necessary, but you might want to enable this option if you are working with very sensitive data such as health records or similar information. Also, be aware that this will limit the functionality of the module for this project: it won’t be possible to create followup questions based on the data donation (i.e., data points from the data donation cannot be referenced in a question).

After a project has been created, it cannot be changed from super secret to regular and vice versa.

{{ form.super_secret.errors }} {{ form.super_secret.label_tag }} {{ form.super_secret }}

🠐 Cancel

{% endblock %} {% block breadcrumbs %} Projects / Create New Project {% endblock %} {% block scripts %} {{ block.super }} {% endblock %}