{% load tz %} {% load i18n %} {% spaceless %} {% block list_item %}
  • {% endblock %}

    {% block button %} {% block title %} {% trans "In Progress" %} {% endblock %}

    {% block body %}

    {% trans "Enter your response to the prompt." %} {% if submission_due %} {% trans "You can save your progress and return to complete your response at any time before the due date" %} ( ). {% else %} {% trans "You can save your progress and return to complete your response at any time." %} {% endif %} {% trans "After you submit your response, you cannot edit it" %}.

      {% for part in saved_response.answer.parts %}
    1. {% trans "The prompt for this section" %}
      {{ part.prompt.description|linebreaks }}
      {% if text_response %}
      {% if text_response == "required" %} {% trans "Your response (required)" %} {% elif text_response == "optional" %} {% trans "Your response (optional)" %} {% endif %}
      {% endif %}
    2. {% endfor %} {% if text_response %}
    3. {% trans "We could not save your progress" %}
      • {% trans "Your Submission Status" %}: {{ save_status }}
      • {% if allow_latex %}
      • {% trans "Click to preview your submission in LaTeX."%}
      • {% trans "Preview Response"%}

      • {% endif %}
    4. {% endif %} {% if file_upload_type %}
    5. {% trans "We could not upload files" %}
    6. {% endif %}
    7. {% include "openassessmentblock/oa_uploaded_file.html" with file_upload_type=file_upload_type file_urls=file_urls class_prefix="submission__answer" including_template="response" xblock_id=xblock_id %}
    {% trans "You may continue to work on your response until you submit it." %}
    {% trans "We could not submit your response" %}
    {% endblock %}
  • {% endspaceless %}