Inform about file size limit
[edumed.git] / wtem / templates / wtem / exercises / file_upload.html
1 <div class="exercise-wtem" data-type="file" data-id="{{exercise.id}}">
2
3     <h3>Zadanie {{no}}</h3>
4         
5     <div class="description">
6         {% for para in exercise.description %}
7             <p class="paragraph">
8                 {{para}}
9             </p>
10         {% endfor %}
11     </div>
12
13     {% if exercise.max_file_size_string %}
14         <p style="font-weight: bold;">Plik nie powinien być większy niż {{exercise.max_file_size_string}}.</p>
15     {% endif %}
16     <div style="margin: 15px auto; width:300px;">
17         <input style="float: left;" type="file" name="attachment_for_{{exercise.id}}"/>
18         <div style="clear:both;"></div>
19     </div>
20     
21
22     <cite>
23     {% for para in exercise.description_after %}
24         <p>{{para}}</p>
25     {% endfor %}
26     </cite>
27
28 </div>