44 lines
1.2 KiB
HTML
44 lines
1.2 KiB
HTML
<%namespace name='static' file='static_content.html'/>
|
|
<h2 class="problem-header">
|
|
${ problem['name'] }
|
|
% if problem['weight']:
|
|
: ${ problem['weight'] } points
|
|
% endif
|
|
|
|
% if settings.QUICKEDIT:
|
|
<section class="staff">
|
|
<a href=${MITX_ROOT_URL}/quickedit/${id}>Quick Edit Problem</a>
|
|
</section>
|
|
% endif
|
|
</h2>
|
|
|
|
<section class="problem">
|
|
${ static.replace_urls(problem['html']) }
|
|
|
|
<section class="action">
|
|
<input type="hidden" name="problem_id" value="${ problem['name'] }">
|
|
|
|
% if check_button:
|
|
<input class="check" type="button" value="${ check_button }">
|
|
% endif
|
|
% if reset_button:
|
|
<input class="reset" type="button" value="Reset">
|
|
% endif
|
|
% if save_button:
|
|
<input class="save" type="button" value="Save">
|
|
% endif
|
|
% if answer_available:
|
|
<input class="show" type="button" value="Show Answer">
|
|
% endif
|
|
% if explain :
|
|
<a href="/courseware/6.002_Spring_2012/${ explain }" class="new-page">Explanation</a>
|
|
% endif
|
|
% if attempts_allowed :
|
|
<section class="submission_feedback">
|
|
You have used ${ attempts_used } of ${ attempts_allowed } submissions
|
|
</section>
|
|
% endif
|
|
</section>
|
|
</section>
|
|
|