Move to subdirectory in prepartion for merge

This commit is contained in:
Calen Pennington
2012-03-19 11:10:44 -04:00
parent 0702a84587
commit 2f0b39189a
170 changed files with 8 additions and 0 deletions

25
templates/problem.html Normal file
View File

@@ -0,0 +1,25 @@
<h2>${ problem['name'] }</h2>
<section class="problem">
${ problem['html'] }
<section class="action">
<input type="hidden" name="problem_id" value="${ problem['name'] }">
% if check_button:
<input id="check_${ id }" type="button" value="Check ${ attempts }" >
% endif
% if reset_button:
<input id="reset_${ id }" type="button" value="Reset ${ attempts }" >
% endif
% if save_button:
<input id="save_${ id }" type="button" value="Save" >
% endif
% if answer_available:
<input id="show_${ id }" type="button" value="Show Answer" >
% endif
% if explain :
<a href="/courseware/6.002_Spring_2012/${ explain }" class="new-page">Explanation</a>
% endif
</section>
</section>