<%! 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='course'/> <%block name="title">${_("{course_number} Open Ended Problems").format(course_number=course.display_number_with_default) | h} <%include file="/courseware/course_navigation.html" args="active_page='open_ended_problems'" />
${error_text}

${_("Open Ended Problems")}

${_("Instructions")}

${_("Here are a list of open ended problems for this course.")}

% if success: % if len(problem_list) == 0:
${_("You have not attempted any open ended problems yet.")}
%else: %for problem in problem_list: %endfor
${_("Problem Name")} ${_("Status")} ${_("Grader Type")} ${_("ETA")}
${problem['problem_name']} ${problem['state']} ${problem['grader_type']} ${problem['eta_string']}
%endif %endif