{% 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|utc|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|utc|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" %}.

    1. {% trans "You may continue to work on your response until you submit it." %}
    2. {% if allow_file_upload %}
    3. {% trans "We could not upload this image" %}

    4. {% trans
    5. {% endif %}

    {% trans "We could not save your progress" %}

    • {% trans "Your Submission Status" %}: {{ save_status }}

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

    {% endblock %}
  • {% endspaceless %}