<%! from django.utils.translation import ugettext as _ %> <%inherit file="/main.html" /> <%block name="bodyclass">${course.css_class} <%namespace name='static' file='/static_content.html'/> <%block name="headextra"> <%static:css group='style-course-vendor'/> <%static:css group='style-course'/> <%block name="title">${_("{course_number} Flagged Open Ended Problems").format(course_number=course.display_number_with_default) | h} <%include file="/courseware/course_navigation.html" args="active_page='open_ended_flagged_problems'" /> <%block name="js_extra"> <%static:js group='open_ended'/>
${error_text}

${_("We're sorry, some student responses have been temporarily " "hidden. We appreciate your patience as we work hard " "to restore their visibility. Rest assured, no student " "data has been lost.")}
${_("Update: We have recovered the majority of student responses. " "Those responses submitted while the issue was active " "(approximately 2:00pm EST Dec 3 to 9:00am EST Dec 5) are " "temporarily unavailable, but we are working on restoring " "them, and they should be visible again shortly.")}


${_("Flagged Open Ended Problems")}

${_("Instructions")}

${_("Here are a list of open ended problems for this course that have been flagged by students as potentially inappropriate.")}

% if success: % if len(problem_list) == 0:
${_("No flagged problems exist.")}
%else: %for problem in problem_list: %endfor
${_("Name")} ${_("Response")}
${problem['problem_name']} ${problem['student_response']} ${_("Unflag")} ${_("Ban")}
%endif %endif