<%! from django.utils.translation import ugettext as _ from xmodule.util.date_utils import get_time_display from django.conf import settings %> <%namespace name='static' file='static_content.html'/>

${ problem['name'] }

% if problem_is_timed:

${_("At {start_time}, you started this exam.").format( start_time=get_time_display(start_time, coerce_tz=settings.TIME_ZONE))}
${_("By {end_time}, you must manually click the 'Final Submit' button below!").format( end_time=get_time_display(end_time_to_display, coerce_tz=settings.TIME_ZONE))}

% endif
${ problem['html'] }
% if reset_button: % endif % if save_button: % endif % if check_button: % endif % if answer_available: % endif % if attempts_allowed :
${_("You have used {num_used} of {num_total} submissions").format(num_used=attempts_used, num_total=attempts_allowed)}
% endif