{% extends 'base_course.html' %} {% block subtitle %} {# I18N: Title of the webpage. #} - {{ gettext('Assessment') }} {% endblock subtitle %} {% block top_content %} {% endblock %} {% block main_content %} {% if is_read_write_course and is_course_admin %} Edit assessment {% endif %} {% if model_version == '1.5' %} {% import 'assessment_html_content.html' as html_assessment %} {% endif %}
{% if due_date_exceeded %} {# I18N: Text shown to students when they visit an assignment page for which the due date has passed. #} {{ gettext('The due date for submitting this assignment has passed. It was due on %(submission_due_date)s.', submission_due_date=submission_due_date) }} {% else %} {# I18N: Shown to the student on the assignment page. #} {{ gettext('Due date for this assignment: ') }} {{ submission_due_date }}. {% endif %}
{% if matcher == 'peer' %}{# I18N: Instructions to the student for a peer-reviewed assignment. #} {{ gettext('You may only submit this assignment once. After you submit it, the assignment will become read-only, and you will not be able to modify your answers. The answers you submit here will be reviewed by your peers.')}}
{% endif %}