images and fixes for new test
[edumed.git] / wtem / templates / wtem / exercises / edumed_wybor.html
index d035f21..2d021f0 100644 (file)
@@ -1,8 +1,8 @@
 <div class="exercise exercise-wtem wybor" data-type="wybor" data-id="{{exercise.id}}">
 
-{% if not exercise.continuation %}
-<h3>Zadanie {{exercise.id_show|default:exercise.id}} ({{ exercise.max_points }} pkt)</h3>  
-{% endif %}
+    {% if no %}
+        {% include "wtem/exercises/exercise_no.html" %}
+    {% endif %}
 
     {% autoescape off %}
     <div class="description">
             </p>
         {% endfor %}
         <span class="instruction">
-            {% if exercise.answer|length == 1 %}
-                Tylko jedna odpowiedź jest prawidłowa.
-            {% else %}
-                Zaznacz wszystkie prawidłowe odpowiedzi.
-            {% endif %}
+            Zaznacz każdą prawidłową odpowiedź (jedną lub więcej).
         </span>
     </div>
     {% endautoescape %}
-
     <div class="question" data-no="1">
         <ol class="lista num">
             {% for option in exercise.options %}
                 <li class="question-piece" data-name="{{option.id}}">
-                    <input type="{% if exercise.answer|length == 1 %}radio{% else %}checkbox{% endif %}" name="{% if exercise.answer|length == 1 %}e{{no}}{% else %}e{{no}}_{{option.id}}{% endif %}" id="e{{no}}_{{option.id}}">
-                    <label for="e{{no}}_{{option.id}}">{{option.text}}</label>
+                    <input type="checkbox" name="e{{no}}_{{option.id}}" id="e{{no}}_{{option.id}}"{% if option.id|stringformat:"s" in exercise.saved_answer.closed_part %} checked="checked"{% endif %}>
+                    <label for="e{{no}}_{{option.id}}">{{option.text|safe}}</label>
                 </li>
             {% endfor %}
         </ol>
@@ -41,7 +36,7 @@
                 </p>
             {% endfor %}
         </div>
-        <textarea style="width: 100%; margin-top:10px;" rows="{{exercise.open_part_rows|default:10}}"></textarea>
+        <textarea style="width: 100%; margin-top:10px;" rows="{{exercise.open_part_rows|default:10}}">{{ exercise.saved_answer.open_part }}</textarea>
     </div>
     {% endif %}