{% for answer in question.answer_set.all %}
{% if block.rhetorical %}
{{answer.label}}
{% else %}
{% if response %}
{% comment %}
multi select is trickier. since there can be more than one correct
response and more than one response by the user.
{% endcomment %}
{% ifanswerin response answer %}
{{answer.label}}
{% else %}
{{answer.label}}
{% endifanswerin %}
{% else %}
{% comment %}no response{% endcomment %}
{{answer.label}}
{% endif %}