{% extends 'base_course.html' %} {% block subtitle %} {# I18N: Title of the webpage. #} - {{ gettext('Review Dashboard') }} {% endblock subtitle %} {% block top_content %} {% endblock %} {% block main_content %}
{# I18N: Header text for a list of assignments that can be reviewed by the student. #}

{{ gettext('Assignments for your review') }}

{% if due_date_exceeded %}

{# 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 %}

    {% for review_step in review_steps %}
  1. {# I18N: An item in a list of assignments. #} {{ gettext('Assignment %(index)s', index=loop.index) }} {% if review_step.state == REVIEW_STATE_COMPLETED %} {# I18N: Text shown after an assignment whose review has been completed. #} ({{ gettext('Completed') }}) {% else %} {# I18N: Text shown after an assignment whose review is still in draft state. #} ({{ gettext('Draft') }}) {% endif %}
  2. {% endfor %}
{% if not due_date_exceeded %}
{% if no_submissions_available is defined and no_submissions_available %}

{# 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 %}
{% endblock %}