This is part 2 of a multiple PR to escape edx-platform templates to prevent xss attack. PROD-465
11 lines
434 B
HTML
11 lines
434 B
HTML
<%page expression_filter="h"/>
|
|
<%! from django.utils.translation import ugettext 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>
|