Inform about file size limit
[edumed.git] / wtem / templates / wtem / exercises / edumed_wybor.html
index d94995d..db3d70c 100644 (file)
@@ -2,13 +2,22 @@
 
     <h3>Zadanie {{no}}</h3>
 
+    {% autoescape off %}
     <div class="description">
         {% for para in exercise.description %}
             <p class="paragraph">
                 {{para}}
             </p>
         {% endfor %}
+        <span class="instruction">
+            {% if exercise.answer|length == 1 %}
+                Tylko jedna odpowiedź jest prawidłowa.
+            {% else %}
+                Zaznacz wszystkie prawidłowe odpowiedzi.
+            {% endif %}
+        </span>
     </div>
+    {% endautoescape %}
 
     <div class="question" data-no="1">
         <ol class="lista num">
@@ -30,7 +39,7 @@
                 </p>
             {% endfor %}
         </div>
-        <textarea style="width: 100%; margin-top:10px;" rows="10"></textarea>
+        <textarea style="width: 100%; margin-top:10px;" rows="{{exercise.open_part_rows|default:10}}"></textarea>
     </div>
     {% endif %}