{% spaceless %} {% load i18n %} {% load oa_extras %}
    {% for part in answer.parts %}
  1. {% trans "The question for this section" %}
    {% if prompts_type == 'html' %} {{ part.prompt.description|safe }} {% else %} {{ part.prompt.description|linebreaks }} {% endif %}
    {% if part.text %}
    {{ answer_text_label }}
    {% if text_response_editor == 'tinymce' %} {% else %}
    {{ part.text|escape|link_and_linebreak }}
    {% endif %}
    {% endif %}
  2. {% endfor %}
{% endspaceless %}