{% 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_form_header %}Question Configuration{% endblock %} {% block main_bottom %} {% if object.question_type != "open" and object.question_type != "transition" %}
Question Items
{% for item in object.questionitem_set.all %} {% if forloop.first %} {% endif %} {% empty %} {% endfor %}
Label Index Value Randomize
{{ item.label }} {{ item.index }} {{ item.value }} {{ item.randomize }}
No items defined.

Edit Items

{% endif %} {% if object.question_type == "semantic_diff" or object.question_type == "matrix" %}
Scale Configuration
{% for point in object.scalepoint_set.all %} {% if forloop.first %} {% endif %} {% empty %} {% endfor %}
Label Index Value
{{ point.label }} {{ point.index }} {{ point.value }}
No scale points defined.

Edit Scale Points

{% endif %} {% endblock %} {% block breadcrumbs %} Projects / "{{ project.name|truncatechars:15 }}" Project / Questionnaire / Edit Question {% endblock %}