{% extends "openassessmentblock/response/oa_response.html" %} {% load i18n %} {% block list_item %}
  • {% endblock %} {% block button %} {% endblock %} {% block title %} {% trans "Complete" %} {% endblock %} {% block body %}
    {% trans "Status" %}
    {% trans "Your response has been submitted. You will receive your grade after all steps are complete and your response is fully assessed." %} {% if peer_incomplete and self_incomplete %} {% blocktrans with peer_start_tag=''|safe self_start_tag=''|safe end_tag=''|safe %} You still need to complete the {{ peer_start_tag }}peer assessment{{ end_tag }} and {{ self_start_tag }}self assessment{{ end_tag }} steps. {% endblocktrans %} {% elif peer_incomplete %} {% blocktrans with start_tag=''|safe end_tag=''|safe%} You still need to complete the {{ start_tag }}peer assessment{{ end_tag }} step. {% endblocktrans %} {% elif self_incomplete %} {% blocktrans with start_tag=''|safe end_tag=''|safe%} You still need to complete the {{ start_tag }}self assessment{{ end_tag }} step. {% endblocktrans %} {% endif %}
    {% trans "Your response" as translated_label %} {% include "openassessmentblock/oa_submission_answer.html" with answer=student_submission.answer answer_text_label=translated_label %} {% trans "Your Uploaded Files" as translated_header %} {% include "openassessmentblock/oa_uploaded_file.html" with file_upload_type=file_upload_type file_urls=file_urls header=translated_header class_prefix="submission__answer" including_template="response_submitted" xblock_id=xblock_id %} {% include "openassessmentblock/oa_team_uploaded_files.html" with file_upload_type=file_upload_type team_file_urls=team_file_urls header=translated_header class_prefix="submission__team__answer" including_template="response_submitted" xblock_id=xblock_id %}
    {% endblock %}