{% extends 'ddm/project_admin/generic/page_with_form.html' %} {% block page_title %}Edit {{ question_type }}{% endblock %} {% block main_heading %}Edit {{ question_type }} "{{ object.name }}"{% endblock %} {% block submit_label %}Update Question{% endblock %} {% block main_bottom %} {% if object.question_type != "open" and object.question_type != "transition" %}

Items

{% for item in object.questionitem_set.all %}

{{ item.label }}

{% empty %}

No items found.

{% endfor %}

Edit items

{% endif %} {% if object.question_type == "semantic_diff" or object.question_type == "matrix" %}

Scale

{% for point in object.scalepoint_set.all %}

{{ point.label }}; {{ point.index }}; {{ point.value }}

{% empty %}

No scale points defined.

{% endfor %}

Edit scale points

{% endif %} {% endblock %} {% block breadcrumbs %} Back to: Projects / Project Cockpit / Questionnaire {% endblock %}