{% if original %} {% if original.computed_scores %}

Auto-scored answers

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

User answers

{% if original.answer_set.all %}

{% for a in original.answers_ordered_as_per_original_asker %} {% endfor %}
Variable name Label Response
{{a.variable_name}}
{%if a.question.text%}
{{a.question.text|capfirst}}
{% endif %}
{{a.possible_choices_json}}
{% if not a.answer.strip %}Not Answered{% endif %} {% if a.choice_label %} {{a.choice_label}} {% if a.possible_choices_json %} {% endif %} {% endif %} {% if a.upload %} {{a.upload.name}} {% endif %}
{% else %} No answers given in this reply. {% endif %} {% endif %}