{% extends "admin/base_site.html" %} {%load markup %} {% block content_title %}Questionnaire Codebooks {% endblock %} {% block content %} {% for asker in askers %}

{{asker}}

{% for i in asker.pages %}

Page {{i.progress_pages.0}}

{% for j in i.get_questions %} {% endfor %}
Variable name/Question text
Choices/Conditions
Show

{{j.question.variable_name}}

{{j.question.text|markdown}}

({{j.question.q_type}})

{% if j.question.choices.count > 0 %}
{{j.question.choices_as_json}}
                    
{% endif %} {% if j.question.score_mapping %} Scores on this question will be remapped as follows when computing summaries:
{{j.question.score_mapping}}
                    
{% endif %}
{% if j.showif %}
{{j.showif.as_json}}
                
{% else %} Always {% endif %}
{% endfor %} {% endfor %} {% endblock %}