{% extends "base.html" %} {% load i18n position_tags %} {% block title %}{{ object.title }}{% endblock %} {% block main %}

{{ object.title }}

{% for question in object.questions.all|order_by_position %}

{{ question.title }}

{% if question.has_other_field %}

{% trans "Other responses" %}

{% for response in question.responses.all %} {% if not forloop.first %}, {% endif %}{{ response.other_answer }} {% endfor %}

{% endif %} {% endfor %} {% endblock %}