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

    {% if team_name %} {% trans "Your Team's Response" %} {% else %} {% trans "Your Response" %} {% endif %}

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

    {% if team_name %} {% trans "Enter your team's response to the prompt." %} {% if submission_due %} {% blocktrans %} You can save your progress and return to complete your team's response at any time before the due date {% endblocktrans %} ( ). {% else %} {% blocktrans %} You can save your progress and return to complete your team's response at any time. {% endblocktrans %} {% endif %} {% trans "After you submit a response on behalf of your team, it cannot be edited" %} . {% else %} {% trans "Enter your response to the prompt." %} {% if submission_due %} {% blocktrans %} You can save your progress and return to complete your response at any time before the due date {% endblocktrans %} ( ). {% 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" %}. {% endif %}

    {% if show_rubric_during_response %}
    {% include "openassessmentblock/oa_rubric.html" with rubric_type="read_only" %}
    {% endif %}
      {% 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 team_name %}
      {% trans "You are on team " %} {{team_name}}. {% trans "Team Members: " %} {{team_usernames|join:", "}}. {% if team_members_with_external_submissions %}
      {% blocktrans %} {{team_members_with_external_submissions}} have/has already submitted a response to this assignment with another team, and will not be a part of your team's submission or assignment grade. {% endblocktrans %} {% endif %}
      {% endif %} {% if text_response %}
      {% if team_name %} {% trans "Team Response " %} {% else %} {% trans "Your Response " %} {% endif %} {% if text_response == "required" %} {% trans "(Required)" %} {% elif text_response == "optional" %} {% trans "(Optional)" %} {% endif %}
      {% if team_name %} {% blocktrans %} Teams should designate one team member to submit a response on behalf of the entire team. All team members can use this space to work on draft responses, but you will not be able to see your teammates' drafts made in this space, so please coordinate with them to decide on the final response the designated team member should submit. {% endblocktrans %} {% 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 has_real_user %} {% if team_name and 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 %} {% if text_response %}
    3. {% trans "We could not save your progress" %}
      • {% trans "Your Submission Status" %}: {{ save_status }}
    4. {% endif %} {% if file_upload_type %}
      {% trans "File Uploads " %} {% if file_upload_response == "required" %} {% trans "(Required)" %} {% elif file_upload_response == "optional" %} {% trans "(Optional)" %} {% endif %}
      {% if team_name %} {% blocktrans %} Upload files and review files uploaded by you and your teammates below. Be sure to add descriptions to your files to help your teammates identify them. {% endblocktrans %} {% endif %}
    5. {% trans "We could not upload files" %}
      {% trans "We could not delete files" %}
      {% trans "Supported file types: " %}{{ white_listed_file_types|join:", "}}
    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 %}
    {% if not team_name %} {% trans "You may continue to work on your response until you submit it." %} {% endif %}
    {% if team_name %}
    {% trans "This is a team submission." %} {% if file_upload_type and text_response %} {% trans "One team member should submit a response with the team’s shared files and a text response on behalf of the entire team." %} {% elif file_upload_type %} {% trans "One team member should submit a response with the team’s shared files on behalf of the entire team." %} {% elif text_response %} {% trans "One team member should submit a text response on behalf of the entire team." %} {% else %} {% trans "One team member should submit on behalf of the entire team."%} {% endif %} {% blocktrans %} Learn more about team assignments here: (link) {% endblocktrans %}
    {% endif %}
    {% trans "We could not submit your response" %}

    {% endif %}
    {% endblock %}
  • {% endspaceless %}