{% extends 'base_course.html' %} {% block top_content %} {% endblock %} {% block main_content %}

{% if previously_submitted %} {# I18N: Shown on the assignment submission confirmation page when the student has submitted a duplicate assignment. #} {{ gettext('You have already submitted this assignment. Your latest attempt has not been saved.') }} {% else %} {# I18N: Shown on the assignment submission confirmation page when the student has successfully submitted an assignment. #} {{ gettext('Thank you for completing this assignment. Your work was successfully submitted.') }} {% endif %} {# I18N: Text shown on the assignment submission confirmation page after the student has submitted a peer-reviewed assignment. #} {{ gettext('Review your peers\' assignments by clicking on the button below.') }}

{% if matcher == 'peer' %} {# I18N: Text for the button on the assignment submission confirmation page. #} {{ gettext('Review peer assignments') }} {% else %} {# I18N: Text for the button on the assignment submission confirmation page. #} {{ gettext('Back to Course page') }} {% endif %}

{% endblock %}