{% extends "base.html" %} {% load markup %} {% load floppyforms %} {% block body %}
{% csrf_token %}

Markdown

{{form.markdown}}

Questionnaire codebook

{% for i in asker.askpage_set.all %} {% if not forloop.first %}
 

page {{i.page_number}}


 
{% endif %} {% for j in i.get_questions %}
{{j.variable_name}} {{j.q_type}}, required: {{j.required}}{% if j.showif %}; show if {{j.showif.as_markdown}}
{% endif %}

{{j.text|markdown}} {% if j.choices.count > 0 %} Edit choices
{{j.choices_as_json}}
{% endif %} {% if j.score_mapping %} Scores on this question will be remapped as follows when computing summaries:
{{j.score_mapping}}
{% endif %}
{% endfor %} {% endfor %}
{% endblock %}