Merge WTEM support into master
[edumed.git] / wtem / templates / wtem / exercises / file_upload.html
diff --git a/wtem/templates/wtem/exercises/file_upload.html b/wtem/templates/wtem/exercises/file_upload.html
new file mode 100644 (file)
index 0000000..eadcdfd
--- /dev/null
@@ -0,0 +1,28 @@
+<div class="exercise-wtem" data-type="file" data-id="{{exercise.id}}">
+
+    <h3>Zadanie {{no}}</h3>
+        
+    <div class="description">
+        {% for para in exercise.description %}
+            <p class="paragraph">
+                {{para}}
+            </p>
+        {% endfor %}
+    </div>
+
+    {% if exercise.max_file_size_string %}
+        <p style="font-weight: bold;">Plik nie powinien być większy niż {{exercise.max_file_size_string}}.</p>
+    {% endif %}
+    <div style="margin: 15px auto; width:300px;">
+        <input style="float: left;" type="file" name="attachment_for_{{exercise.id}}"/>
+        <div style="clear:both;"></div>
+    </div>
+    
+
+    {% autoescape off %}
+    {% for para in exercise.description_after %}
+        <p>{{para}}</p>
+    {% endfor %}
+    {% endautoescape %}
+
+</div>
\ No newline at end of file