Files
edx-platform/lms/templates/peer_grading/peer_grading_closed.html
2023-08-16 17:07:23 +05:00

11 lines
433 B
HTML

<%page expression_filter="h"/>
<%! from django.utils.translation import gettext as _ %>
<section class="container peer-grading-container">
<h2>${_("Peer Grading")}</h2>
% if use_for_single_location:
<p>${_("The due date has passed, and peer grading for this problem is closed at this time.")} </p>
%else:
<p>${_("The due date has passed, and peer grading is closed at this time.")} </p>
%endif
</section>