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

    {% trans "Your Response" %}

    {% if submission_start %} {# Translators: This string displays a date to the user, then tells them the time until that date. Example: "available August 13th, 2014 (in 5 days and 45 minutes)" #} {% blocktrans with start_date=submission_start|timezone:"UTC"|date:"c" time_until=submission_start|timeuntil %} {% endblocktrans %} {% elif submission_due %} {# Translators: This string displays a date to the user, then tells them the time until that date. Example: "due August 13th, 2014 (in 5 days and 45 minutes)" #} {% blocktrans with due_date=submission_due|timezone:"UTC"|date:"c" time_until=submission_due|timeuntil %} {% endblocktrans %} {% endif %} {% 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 %}
      {% with forloop.counter|stringformat:"s" as submission_num %} {% include "openassessmentblock/oa_latex_preview.html" with id="submission__"|add:xblock_id|add:submission_num elem="div" preview_name="submission__"|add:submission_num %} {% endwith %} {% endif %}
    2. {% endfor %} {% if text_response %}
    3. {% trans "We could not save your progress" %}
      • {% trans "Your Submission Status" %}: {{ save_status }}
    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 %}