{% load tz %} {% load i18n %} {% spaceless %} {% block list_item %}
  • {% 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:time_zone|date:"N j, Y H:i e" time_until=submission_start|timeuntil %}available {{ start_date }} (in {{ time_until }}){% 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:time_zone|date:"N j, Y H:i e" time_until=submission_due|timeuntil %}due {{ due_date }} (in {{ time_until }}){% endblocktrans %} {% endif %}

    {% block title %} {% trans "This step's status" %}: {% trans "In Progress" %} {% endblock %}
    {% block body %}

    {% trans "Enter your response to the question." %} {% if submission_due %} {% trans "You can save your progress and return to complete your response at any time before the due date" %} ({{ submission_due|utc|date:"l, N j, Y H:i e" }}). {% 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 }}
    2. {% endfor %} {% if file_upload_type %}
    3. {% trans "We could not upload this file" %}

    4. {% endif %} {% include "openassessmentblock/oa_uploaded_file.html" with file_upload_type=file_upload_type file_url=file_url class_prefix="submission__answer"%}
    {% trans "You may continue to work on your response until you submit it." %}

    {% 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 %}

    {% trans "We could not submit your response" %}

    {% endblock %}
  • {% endspaceless %}