-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentityrelationship_check.html
44 lines (44 loc) · 2.51 KB
/
entityrelationship_check.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<div class="list-block">
<div class="list-group">
<ul>
<li >
<div class="item-content">
<div class="item-inner">
<div class="item-text"><b class="muted">{%if item.value.feedback_relationship_is_correct %}FEEDBACK/GOLD{%endif%}{{forloop.counter}}. Please read the text:</b><br/><font style="color:black;">{{item.value.sentence}}</font><br/> <b class="muted">Answer the questions by swiping from right to left:</b> </div>
</div>
</div>
</li>
<li class="swipeout dataitem question notanswered" instance-id="{{item.id}}">
<input type = 'hidden' name='dataitem_{{item.id}}_relationship_is_correct' {%if item.value.feedback_relationship_is_correct %} gold ="{{item.value.gold_relationship_is_correct}}" feedback="{{item.value.feedback_relationship_is_correct}}"{%endif%} class='dataitem_answer'>
<div class="swipeout-content item-content">
<div class="item-media"><i class="fa fa-question-circle"></i></div>
<div class="item-inner">
<div class="item-text">Do you understand from this text that: <b>{{item.value.name1}}</b> -> <b>{{item.value.relationship}}</b> -> <b>{{item.value.name2}}</b> ? {{item.value.feedback_relationship_is_correct}}</div>
</div>
</div>
<div class="swipeout-actions">
<div class="swipeout-actions-inner">
<a href="#" class="demo-actions neutral" answer-to="[name=dataitem_{{item.id}}_relationship_is_correct]" answer="I dont know">I dont know</a>
<a href="#" class="demo-actions positive" answer-to="[name=dataitem_{{item.id}}_relationship_is_correct]" answer="yes">Yes</a>
<a href="#" class="demo-actions negative" answer-to="[name=dataitem_{{item.id}}_relationship_is_correct]" answer="no">No</a>
</div>
</div>
</li>
<li class="swipeout dataitem question notanswered" instance-id="{{item.id}}">
<input type = 'hidden' name='dataitem_{{item.id}}_sentence_messy' class='dataitem_answer'>
<div class="swipeout-content item-content">
<div class="item-media"><i class="fa fa-question-circle"></i></div>
<div class="item-inner">
<div class="item-text">Does this text include only 1 clear understandable sentence?</div>
</div>
</div>
<div class="swipeout-actions">
<div class="swipeout-actions-inner">
<a href="#" class="demo-actions positive" answer-to="[name=dataitem_{{item.id}}_sentence_messy]" answer="yes">Yes</a>
<a href="#" class="demo-actions negative" answer-to="[name=dataitem_{{item.id}}_sentence_messy]" answer="no">No</a>
</div>
</div>
</li>
</ul>
</div>
</div>