Files
edx-platform/lms/templates/peer_grading/peer_grading_closed.html
Adeel Khan 30d8dfb5dd Fix edx-platform templates for xss.
This is part 2 of a multiple PR to escape
edx-platform templates to prevent xss attack.

PROD-465
2019-07-10 13:31:02 +05:00

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>