{% extends "template_admin.html" %} {% from "questionnaire_macro.html" import createQuestionnaire with context %} {% block head %} {% endblock %} {% block content %} {% if (config['CONDITIONS'] | length) > 1 %}
{% endif %} {% if (errors | length) > 0 %}
Errors were found
{% endif %} {% if not 'participantID' in session %}
Error: Cannot render questions until you have a valid session. Please first view your study as a participant and then come back here.
{% endif %}
{{ createQuestionnaire(q) }}

{{ q.title if q.title else "Questionnaire Metadata"}}

{% if q.participant_calculations %}

Per-Response Calculations

{% endif %} {% endblock %}