{% load tz %} {% load i18n %} {% 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" %}
      {% if prompts_type == 'html' %} {{ part.prompt.description|safe }} {% else %} {{ part.prompt.description|linebreaks }} {% endif %}
      {% 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 team_name %} {% if text_response %}
      {% blocktrans %} The text response of the first learner on your team who presses the submit button will be recorded as the text submission for the entire team, and all files uploaded by all team members at that point will also be included in the team submission. After the learner submits a response for your team, it cannot be edited. {% endblocktrans %}
      {% endif %}
      {% trans "You are on team " %} {{team_name}}. {% trans "Team Members: " %} {{team_usernames|join:", "}}
      {% if previous_team_name %}
      {% blocktrans %} You are currently on Team {{team_name}}. Since you were on Team {{previous_team_name}} when they submitted a response to this assignment, you are seeing Team {{previous_team_name}}’s response and will receive the same grade for this assignment as your former teammates. You will not be part of Team {{team_name}}’s submission for this assignment and will not receive a grade for their submission. {% endblocktrans %}
      {% endif %}
      {% trans "Note: this is a team assignment. Make sure to coordinate with your teammates to avoid overwriting each other's work."%}
      {% endif %} {% 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" %}
      {% trans "We could not delete 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 %}

    8. {% include "openassessmentblock/oa_team_uploaded_files.html" with file_upload_type=file_upload_type team_file_urls=team_file_urls class_prefix="submission__team__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 %}