1 <div class="exercise exercise-wtem wybor" data-type="wybor" data-id="{{exercise.id}}">
3 <h3>Zadanie {{no}}</h3>
6 <div class="description">
7 {% for para in exercise.description %}
15 <div class="question" data-no="1">
16 <ol class="lista num">
17 {% for option in exercise.options %}
18 <li class="question-piece" data-name="{{option.id}}">
19 <input type="{% if exercise.answer|length == 1 %}radio{% else %}checkbox{% endif %}" name="{% if exercise.answer|length == 1 %}e{{no}}{% else %}q1_{{option.id}}{% endif %}" id="q1_{{option.id}}">
20 <label for="{% if exercise.answer|length == 1 %}e{{no}}{% else %}q1_{{option.id}}{% endif %}">{{option.text}}</label>
26 {% if exercise.open_part %}
27 <div class="open_part">
28 <div class="description">
29 {% for para in exercise.open_part %}
35 <textarea style="width: 100%; margin-top:10px;" rows="10"></textarea>