{% extends "orga/submission/base.html" %} {% load i18n %} {% block submission_content %} {% for answer in answer_list %}
{{ answer.question.question }} ({{ answer.question.get_variant_display }})
{% if answer.question.variant == 'file' %} {% if answer.answer_file %} {{ answer.answer_file }} {% endif %} {% else %} {{ quotation_open }}{% include "common/question_answer.html" with answer=answer %}{{ quotation_close }} {% endif %} {% empty %} {% translate "No questions have been answered at the moment." %} {% endfor %} {% endblock %}