{% extends "base.html" %} {% block title %}Survey — {{ task.name }}{% endblock %} {% block content %}
{{ task.badge }}

{{ task.name }} — After-task survey

Please answer these questions about the task you just completed.

Comprehension questions

Short answers are fine.

{% for question in task.comprehension %}
{% endfor %}

Rate each statement (1 = Strongly disagree, 5 = Strongly agree)

Statement
1
Strongly
disagree
2 3 4 5
Strongly
agree
{% for key, label in likert_items %}
{{ label }}
{% for v in [1,2,3,4,5] %} {% endfor %}
{% endfor %}
{% endblock %}