1 <div class="exercise exercise-wtem wybor" data-type="wybor" data-id="{{exercise.id}}">
3 <h3>Zadanie {{no}}</h3>
5 <div class="description">
6 {% for para in exercise.description %}
13 <div class="question" data-no="1">
14 <ol class="lista num">
15 {% for option in exercise.options %}
16 <li class="question-piece" data-name="{{option.id}}">
17 <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}}">
18 <label for="{% if exercise.answer|length == 1 %}e{{no}}{% else %}q1_{{option.id}}{% endif %}">{{option.text}}</label>
24 {% if exercise.open_part %}
25 <div class="open_part">
26 <div class="description">
27 {% for para in exercise.open_part %}
33 <textarea style="width: 100%; margin-top:10px;" rows="10"></textarea>