{% load tz %} {% load i18n %} {% spaceless %} {% block list_item %}
  • {% endblock %} {% comment %}
    {% 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 %}
    {% endcomment %} {% comment %}
    {% 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 %} {% endcomment %} {% comment %} {% block title %} {% trans "In Progress" %} {% endblock %}
    {% endcomment %} {% block body %}
    {% comment %}

    {% if team_name %} {% trans "Enter your team's response to the prompt." %} {% if submission_due %} {% blocktrans %} Your work will save automatically and you can return to complete your team's response at any time before the due date {% endblocktrans %} ( ). {% else %} {% blocktrans %} Your work will save automatically and you can 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 %} {% if date_config_type == 'subsection' %} {% trans "Your work will save automatically and you can return to complete your response at any time before the subsection due date " %} {% elif date_config_type == 'course_end' %} {% trans "Your work will save automatically and you can return to complete your response at any time before the course ends " %} {% else %} {% trans "Your work will save automatically and you can return to complete your response at any time before the due date " %} {% endif %} ( ). {% else %} {% trans "Your work will save automatically and you can return to complete your response at any time." %} {% endif %} {% trans "After you submit your response, you cannot edit it" %}. {% endif %}

    {% endcomment %} {% if show_rubric_during_response %}
    {% include "openassessmentblock/oa_rubric.html" with rubric_type="read_only" %}
    {% endif %}
      {% for part in saved_response.answer.parts %}
    1. {% comment %}
      {% trans "The prompt for this section" %}
      {% if prompts_type == 'html' %} {{ part.prompt.description|safe }} {% else %} {{ part.prompt.description|linebreaks }} {% endif %}
      {% endcomment %} {% if text_response %}
      {% if team_name %} {% trans "Team Response " %} {% else %} {% trans "Submission Details" %} {% 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 %}
      {% trans "Are there any areas you would like your reviewer to pay particular attention to?" %}
      {% 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 text_response %}
    3. {% trans "We could not save your progress" %}
      {% comment %}
      • {% trans "Status of Your Response" %}: {{ save_status }}
      {% endcomment %}
    4. {% endif %}
      {% if file_upload_type %}
    5. {% comment %}
      {% trans "We could not upload files" %}
      {% endcomment %}
      {% trans "We could not delete files" %}

      {% trans "File upload " %} {% trans "(required)" %}

    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. {% if file_upload_type %}
      {% trans "We could not upload files" %}
      {% trans "We could not delete files" %}
      {% endif %} {% comment %}
    9. {% 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 %}
    10. {% endcomment %}
    {% comment %} {% 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 %} {% endcomment %}
    {% trans "We could not submit your response" %}

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