ccb6023a6be4f658d14f949c7f2d6a4fef292f02
[edumed.git] / wtem / templates / wtem / main.html
1 {% extends 'base_super.html' %}
2 {% load compressed %}
3
4 {% block extra_script %}
5     {% compressed_js 'wtem' %}
6 {% endblock %}
7
8
9
10 {% block body %}
11
12 {% for exercise in exercises %}
13     {% with 'wtem/exercises/'|add:exercise.type|add:'.html' as template_name %}
14     {% include  template_name with exercise=exercise no=forloop.counter %}
15     {% endwith %}
16 {% endfor %}
17
18
19 <hr/>
20 <button style="display: block; margin: auto;" id="submit_answers">Wyƛlij moje odpowiedzi</button>
21
22 {% endblock %}