03db394042882c2bcad47d695043b4c894be1e77
[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 <style>
12     .wtem-open-field {
13         margin: 10px 0;
14     }
15     .wtem-open-field textarea {
16         margin-top:0;
17     }
18 </style>
19
20 <h1>Wielki Turniej Edukacji Medialnej</h1>
21
22 <form method="post" enctype="multipart/form-data">
23 {% csrf_token %}
24
25 {% for exercise in exercises %}
26     {% with 'wtem/exercises/'|add:exercise.type|add:'.html' as template_name %}
27     {% include  template_name with exercise=exercise no=forloop.counter %}
28     {% endwith %}
29 {% endfor %}
30
31
32 <hr/>
33 <input type="hidden" name="answers" value=""/>
34 <button style="display: block; margin: auto;" id="submit_answers">Wyƛlij moje odpowiedzi</button>
35
36 </form>
37
38 {% endblock %}