Files
edx-platform/homework.html
Kyle Fiedler 76b4f6467a Added more style for problems and acordion
--HG--
branch : kf-courseware
2012-01-09 14:48:55 -05:00

17 lines
319 B
HTML

<h1> ${ homework['name']} Test </h1>
<ol>
% for problem in homework['problems']:
<li>
<h2>${ problem['name'] }</h2>
${ problem['html'] }
<section>
<input type="hidden" name="problem_id" value="${ problem['name'] }">
<input type="submit" value="Check">
</section>
</li>
% endfor
</ol>