homework.html 319 Bytes
Newer Older
1
<h1> ${ homework['name']} Test </h1>
pmitros committed
2

3
<ol>
pmitros committed
4
% for problem in homework['problems']:
5
  <li>
6
    <h2>${ problem['name'] }</h2>
7
    ${ problem['html'] }
8 9 10 11 12

    <section>
      <input type="hidden" name="problem_id" value="${ problem['name'] }">
      <input type="submit" value="Check">
    </section>
13
  </li>
pmitros committed
14
% endfor
15
</ol>
pmitros committed
16