| 1 | extends withQuestions |
| 2 | |
| 3 | block append stylesheets |
| 4 | link(rel="stylesheet" href="/stylesheets/monitor.css") |
| 5 | |
| 6 | block content |
| 7 | .container#monitor |
| 8 | .row |
| 9 | .col.s12.m10.offset-m1 |
| 10 | h4= examName |
| 11 | #stage0(v-show="stage==0") |
| 12 | .card |
| 13 | .input-field.inline.on-left |
| 14 | label(for="password") Password |
| 15 | input#password(type="password" v-model="password" @keyup.enter="startMonitoring()") |
| 16 | button.waves-effect.waves-light.btn(@click="startMonitoring()") Send |
| 17 | #stage1(v-show="stage==1") |
| 18 | button.waves-effect.waves-light.btn(@click="endMonitoring()") Send feedback |
| 19 | h4.title(@click="toggleDisplay('answers')") Anwers |
| 20 | // TODO: aussi afficher stats, permettre tri par colonnes |
| 21 | .card(v-show="display=='answers'") |
| 22 | ul.tabs.tabs-fixed-width |
| 23 | li.tab |
| 24 | a(href="#group0") All |
| 25 | li.tab(v-for="group in groupList()") |
| 26 | a(:href="groupId(group,'#')") G.{{ group }} |
| 27 | table(:id="groupId(group)" v-for="group in [0].concat(groupList())") |
| 28 | thead |
| 29 | tr |
| 30 | th Name |
| 31 | th(v-for="(q,i) in assessment.questions") Q.{{ (i+1) }} |
| 32 | tbody |
| 33 | tr.assessment(v-for="s in studentList(group)") |
| 34 | td(:class="{blur:!!s.blur,resize:!!s.resize,disconnect:!!s.disco}") {{ s.name }} |
| 35 | td(v-for="(q,i) in assessment.questions" :style="{backgroundColor: getColor(s.number,i)}" @click="seeDetails(s.number,i)") |
| 36 | h4.title(@click="toggleDisplay('assessment')") Assessment |
| 37 | div(v-show="display=='assessment'") |
| 38 | .card |
| 39 | .introduction(v-html="assessment.introduction") |
| 40 | .card |
| 41 | statements(:questions="assessment.questions" :answers="answers") |
| 42 | .card |
| 43 | .conclusion(v-html="assessment.conclusion") |
| 44 | |
| 45 | block append javascripts |
| 46 | script. |
| 47 | const examName = "#{examName}"; |
| 48 | const courseCode = "#{courseCode}"; |
| 49 | const initials = "#{initials}"; |
| 50 | const monitoring = true; |
| 51 | script(src="/javascripts/utils/libsRefresh.js") |
| 52 | script(src="/javascripts/components/statements.js") |
| 53 | script(src="//cdnjs.cloudflare.com/ajax/libs/socket.io/2.0.4/socket.io.js") |
| 54 | script(src="/javascripts/utils/sha1.js") |
| 55 | script(src="/javascripts/monitor.js") |