local changes from the server
[edumed.git] / wtem / templates / wtem / exercises / open.html
index 8645d46..25fa8e0 100644 (file)
@@ -1,6 +1,8 @@
 <div class="exercise-wtem" data-type="open" data-id="{{exercise.id}}">
 
-    <h3>Zadanie {{no}}</h3>
+{% if not exercise.continuation %}
+<h3>Zadanie {{exercise.id_show|default:exercise.id}} ({{ exercise.max_points }} pkt)</h3>
+{% endif %}
         
     <div class="description">
         {% autoescape off %}
     {% if exercise.fields %}
         {% for field in exercise.fields %}
             <div class="wtem-open-field">
-                <label class="wtem-caption">{{field.caption}} <span class="label_suffix"></span></label>
+                <label class="wtem-caption">{{field.caption|safe}} <span class="label_suffix"></span></label>
+{% if field.type == 'file' %}
+
+    <div style="margin: 15px auto; width:300px;">
+        <input style="float: left;" type="file" name="attachment_for_{{exercise.id}}__{{field.id}}"/>
+        <div style="clear:both;"></div>
+    </div>
+
+{% else %}
+
                 <textarea style="width: 100%;" rows="{{field.rows|default:10}}" data-field-id="{{field.id}}" {% if field.max_length %}maxlength="{{field.max_length}}"{% endif %} {% if field.input_id %}id="{{field.input_id}}"{% endif %}></textarea>
+
+{% endif %}
+
             </div>
         {% endfor %}
     {% else %}
@@ -35,4 +49,4 @@
         </div>
     {% endif%}
 
-</div>
\ No newline at end of file
+</div>