{% extends "admin/base_site.html" %} {% block title %}{% endblock %} {% load markup %} {% block content_title %} User responses {% endblock %} {% block content %}
{% if reply.observation.created_by_script.is_clinical_data %}
Clinical data
{% endif %} {% if not reply.complete %}
Alert: Reply was not completed in full
{% endif %}

Questionnaire: {{reply.asker}}

{% if reply.computed_scores %}

Auto-scored answers

{% for i in reply.computed_scores %} {% endfor %}
ScoresheetScoreMessages
{{i.scoresheet}} {{i.score}} {{i.message}}
{% endif %}

Raw responses

{% if reply.answer_set.all %} {% for a in reply.answer_set.all %} {% endfor %}
Variable name Page Label Response
{{a.variable_name}} {{a.page.index}}
{%if a.question.text%}
{{a.question.text|capfirst}}
{% endif %}
{{a.possible_choices_json}}
{% if not a.reply %}Not Answered{% endif %} {% if a.question.show_as_image_data_url %} {% else %} {% if a.choice_label %} {{a.choice_label}} {% if a.possible_choices_json %} {% endif %} {% endif %} {% endif %}
{% else %} No answers given in this reply. {% endif %}

Answers last modified: {{reply.last_submit}}

Token: {{reply.token}}

{% endblock %}