Improve instruction
[edumed.git] / wtem / templates / wtem / exercises / edumed_uporzadkuj.html
1 <div class="exercise exercise-wtem uporzadkuj" data-type="uporzadkuj" data-id="{{exercise.id}}">
2
3     <h3>Zadanie {{no}}</h3>
4
5     <div class="question" data-no="1">
6         <div class="description">
7         {% for para in exercise.description %}
8             <p class="paragraph">
9                 {{para}}
10             </p>
11         {% endfor %}
12             <span class="instruction">Kliknij i przytrzymaj wybraną odpowiedź, następnie przeciągnij w nowe miejsce.</span>
13         </div>
14
15         <ol class="lista num ui-sortable">
16             {% for item in exercise.items %}
17                 <li class="question-piece" data-pos="{{item.id}}">{{item.text}}</li>
18             {% endfor %}
19         </ol>
20
21     </div>
22 </div>
23