1 {% extends 'base_super.html' %}
6 {% block extra_script %}
7 {% compressed_js 'wtem' %}
16 .wtem-open-field textarea {
19 .wtem-items-inline li {
20 display: inline-block;
33 {% for message in messages %}
34 <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
39 <h1>{% include "wtem/title.html" %}</h1>
43 {% cache 300 wtem exercise.id %}
44 {% with 'wtem/exercises/'|add:exercise.type|add:'.html' as template_name %}
45 {% include template_name with exercise=exercise %}
51 <input type="hidden" name="answers" value=""/>
53 <p style="text-align:center; margin-top:20px;">
54 <input type="submit" value="{% if no < exercise_count %}Kolejne pytanie{% else %}Zakończ test{% endif %}" style="display: block; margin: auto;"/>
56 <span class="wtem_spinner">
57 <span>Wysyłanie rozwiązania w toku...</span>
58 <img src="{% static 'wtem/spinner.gif' %}"/>
59 <span>Spróbuj jeszcze raz, jeśli wysyłanie trwa dłużej niż kilka chwil.</span>
67 {% block tracking %}{% endblock %}