{% extends "courses/base_course.html" %} {% load i18n peer_review_tags %} {% block nav-course-reviews %}class="active"{% endblock %} {% block content %}

{% trans "Reviews" %}

{% if assignments %} {% regroup assignments by kq.unit as unit_list %} {% for unit in unit_list %}

{{ unit.grouper.title }}

{% for pra in unit.list %}

{{ pra.kq.title }}

{% pending_reviews pra user course user_submissions %}
{% endfor %} {% endfor %} {% else %}

{% trans "This course does not have any Peer Review Assignment" %}.

{% trans "You can try enrolling in another course" %}.

{% endif %} {% endblock %}