{% extends 'base_course.html' %} {% block subtitle %} {# I18N: Title of the webpage. #} - {{ gettext('Review Dashboard') }} {% endblock subtitle %} {% block top_content %} {% endblock %} {% block main_content %}
{# I18N: Text shown to students when they visit their list of reviews to be done, but the due date has passed. #} {{ gettext('The due date for submitting reviews has passed.') }}
{% endif %}{# I18N: Instructions for a student being asked to do a review. #} {{ gettext('All reviews are due by %(review_due_date)s.', review_due_date=review_due_date) }} {% if review_min_count == 1 %} {# I18N: Instructions for a student being asked to do a review. #} {{ gettext('In order to earn credit for this assignment, you must complete at least 1 review by then.') }} {% elif review_min_count > 1 %} {# I18N: Instructions for a student being asked to do a review. #} {{ gettext('In order to earn credit for this assignment, you must complete at least %(review_min_count)d reviews by then.', review_min_count=review_min_count) }} {% endif %}
{# I18N: Text shown after a student has asked for a new assignment to review when there are no assignments left to review. #} {{ gettext('Sorry, there are no new submissions available for you to review at this time.') }}
{% endif %} {% endif %}