{% extends 'ddm/admin/base.html' %} {% block page_title %}Questionnaire Setup{% endblock %} {% block main_heading %}Questionnaire{% endblock %} {% block main_body %} {% if not donation_blueprints %}

Questions can only be created in relation to a donation blueprint and no donation blueprints have been defined yet. Create a donation blueprint →

{% else %}
{% for question in general_questions %} {% if forloop.first %} {% endif %} {% empty %} {% endfor %} {% for blueprint in donation_blueprints %} {% for question in blueprint.get_associated_questions %} {% if forloop.first %} {% endif %} {% empty %} {% endfor %} {% empty %} {% endfor %}
Questions
Blueprint Page Name Type
General Questions{{ question.index }} {{ question.name }} {{ question.get_question_type_display }} Edit Question | Delete Question
General Questions No general questions defined.
{{ blueprint.name }}{{ question.index }} {{ question.name }} {{ question.get_question_type_display }} Edit Question | Delete Question
{{ blueprint.name }} No associated questions.
No blueprints created yet.
{% endif %}
🠐 Back
{% endblock %} {% block breadcrumbs %} Projects / "{{ project.name|truncatechars:15 }}" Project / Questionnaire {% endblock %}