{% extends 'ddm/project_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 %}

Donation Blueprints

{% for blueprint in donation_blueprints %} {% empty %} {% endfor %}
Blueprint Questions
{{ blueprint.name }} {% for question in blueprint.get_associated_questions %}
Name: {{ question.name }}
Type: {{ question.get_question_type_display }}
Edit Question | Delete Question {% if not forloop.last %}
{% endif %}
{% empty %}

No questions created.

{% endfor %}
No blueprints created yet.
{% endif %} {% endblock %} {% block breadcrumbs %} Projects / "{{ project.name|truncatechars:15 }}" Project / Questionnaire {% endblock %}