{% extends 'ddm/admin/generic/page_with_form.html' %} {% block page_title %}Edit Project{% endblock %} {% block main_heading %}Edit "{{ object.name }}"{% endblock %} {% block main_form %}
{% csrf_token %} {{ form.media }}
{% if form.errors %}

The form could not be processed. Please check the issues highlighted below.

{% endif %} {{ form.non_field_errors }}

{% for field in form %} {% if field.name in "name,slug" %} {% include "ddm/admin/components/form_field_basic.html" %} {% endif %} {% endfor %}

This information is linked in your project's footer. Participants can access this information at any time.

{% for field in form %} {% if field.name in "contact_information,data_protection_statement" %} {% include "ddm/admin/components/form_field_basic.html" %} {% endif %} {% endfor %}

Extract information from parameters passed with the URL when a project is accessed by a participant.

{% for field in form %} {% if field.name in "url_parameter_enabled,expected_url_parameters" %} {% include "ddm/admin/components/form_field_basic.html" %} {% endif %} {% endfor %}

Configure your project to redirect your participants to another web-address after reaching the end of your study (i.e., after reaching the debriefing page).

{% for field in form %} {% if field.name in "redirect_enabled,redirect_target" %} {% include "ddm/admin/components/form_field_basic.html" %} {% endif %} {% endfor %}

Configure the appearance of your project from the participants' perspective:

{% for field in form %} {% if field.name in "img_header_left,img_header_right" %}
{{ field.label_tag }} {{ field.errors }} {{ field }} {{ field.help_text }}
{% endif %} {% endfor %}
{% block cancel %}

🠐 Cancel

{% endblock %}
{% endblock %} {% block breadcrumbs %} Projects / "{{ object.name|truncatechars:15 }}" Project / Edit Details {% endblock %} {% block scripts %} {{ block.super }} {% endblock %}