<%! from django.utils.translation import ugettext as _ %>
${error_text}

${_("Peer Grading")}

${_("Instructions")}

${_("Here are a list of problems that need to be peer graded for this course.")}

% if success: % if len(problem_list) == 0:
${_("You currently do not having any peer grading to do. In order to have peer grading to do, you need to have submitted a response to a peer grading problem. The instructor also needs to score the essays that are used to help you better understand the grading criteria.")}
%else:
%for problem in problem_list: %endfor
${_("Problem Name")} ${_("Due date")} ${_("Graded")} ${_("Available")} ${_("Required")} ${_("Progress")}
%if problem['closed']: ${problem['problem_name']} %else: ${problem['problem_name']} %endif % if problem['due']: ${problem['due']} % else: ${_("No due date")} % endif ${problem['num_graded']} ${problem['num_pending']} ${problem['num_required']}
%endif %endif