homework.html 320 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

8
    ${ problem['html'] }
9 10 11 12 13

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