-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsurvey.html
2132 lines (1372 loc) · 70.8 KB
/
survey.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="de">
<head>
<title>AAER - DigiLLab UniA Umfrage</title>
<meta name="viewport" content="width=device-width" />
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<!-- ChartJS-Integration Start -->
<script src="/js/Chart.js"></script>
<!-- ChartJS-Integration Ende -->
<!-- jQuery Start -->
<script src="/js/jquery-3.5.1.min.js"></script>
<!-- jQuery End -->
<!-- printThis Start -->
<script src="/js/printThis.js"></script>
<!-- printThis End -->
<!-- Custom Index CSS Start -->
<link rel="stylesheet" href="/css/index.css">
<!-- Custom Index CSS End -->
<!-- Custom Survey CSS Start -->
<link rel="stylesheet" href="/css/survey.css">
<!-- Custom Survey CSS End -->
<!-- Custom Dashboard CSS Start -->
<link href="/css/simple-sidebar.css" rel="stylesheet">
<!-- Custom Dashboard CSS End -->
<!-- jQuery Start -->
<script src="/js/survey.jquery.min.js"></script>
<!-- jQuery End -->
<!-- Custom Dashboard JS Start -->
<script type="/js/mdb.min.js"></script>
<!-- Custom Dashboard JS End -->
<!-- Bootstrap Material Design v.4.1.1 Start -->
<link rel="stylesheet" href="/css/bootstrap-material-design-4_1_1-min.css">
<!-- Bootstrap Material Design v.4.1.1 End -->
<!-- PopperJS v.1.12.6 Start -->
<script src="/js/popperJS-1_12_6.js"></script>
<!-- PopperJS v.1.12.6 End -->
<!-- Bootstrap Material Design JS Start -->
<script src="/js/bootstrap-material-design.js"></script>
<!-- Bootstrap Material Design JS End -->
<script src="https://unpkg.com/survey-core/survey.i18n.min.js"></script>
</head>
<body style="width:100% !important">
<!-- Navigation Start -->
<div id="navigation_container"></div>
<!-- Navigation End -->
<!-- Start: Dashboard Div -->
<div id="dashboard-aaer" class="mr-lg-5 mr-md-3 mr-sm-0 mr-xs-0 ml-lg-5 ml-md-3 ml-sm-0 ml-xs-0 mt-lg-5 mt-md-5 mt-sm-1 mt-xs-1 pt-lg-5 pt-md-5 pt-sm-1 pt-xs-1">
<div>
<!-- Start: Wrapper -->
<div class="d-flex" id="wrapper">
<!-- Start: Sidebar -->
<div id="sidebar-wrapper" style="background-color: #2F3436">
<div class="sidebar-heading text-center"></div>
<div class="list-group list-group-flush">
<span class="dashboard-title font-weight-bold mb-1 pl-3 mt-5" data-lang="De">Analyse und Evaluation</span>
<span class="dashboard-title font-weight-bold mb-1 pl-3 mt-5" data-lang="En">Analysis and Evaluation</span>
<button id="button_display_start" class="list-group-item list-group-item-action"
onclick="displayController(DISPLAY.START)"><span data-lang="De">Lehr-Lernmittel evaluieren</span><span data-lang="En">Evaluate educational ressource</span></button>
<button id="button_display_anlegen" class="list-group-item list-group-item-action"
onclick="displayController(DISPLAY.ANLEGEN)"><span data-lang="De">Gruppenevaluation anlegen</span><span data-lang="En">Create evaluation for group</span></button>
<button id="button_display_auswerten" class="list-group-item list-group-item-action"
onclick="displayController(DISPLAY.AUSWERTEN)"><span data-lang="De">Evaluationsergebnisse laden</span><span data-lang="En">Load results</span></button>
<span class="dashboard-title font-weight-bold mb-1 pl-3 mt-5" data-lang="De">Auswertung</span>
<span class="dashboard-title font-weight-bold mb-1 pl-3 mt-5" data-lang="En">Report</span>
<button id="button_display_overallChart" class="list-group-item list-group-item-action"
onclick="displayController(DISPLAY.OVERALL)">
<svg width="1.2em" height="1.2em" viewBox="0 0 16 16"
class="bi bi-pie-chart-fill list-group-icon" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path
d="M15.985 8.5H8.207l-5.5 5.5a8 8 0 0 0 13.277-5.5zM2 13.292A8 8 0 0 1 7.5.015v7.778l-5.5 5.5zM8.5.015V7.5h7.485A8.001 8.001 0 0 0 8.5.015z" />
</svg><span data-lang="De">Übersicht</span><span data-lang="En">Overview</span>
</button>
<button id="button_display_grp1Chart" class="list-group-item list-group-item-action"
onclick="displayController(DISPLAY.CHART1)">
<svg width="1.2em" height="1.2em" viewBox="0 0 16 16"
class="bi bi-book-half list-group-icon" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M8.5 2.687v9.746c.935-.53 2.12-.603 3.213-.493 1.18.12 2.37.461 3.287.811V2.828c-.885-.37-2.154-.769-3.388-.893-1.33-.134-2.458.063-3.112.752zM8 1.783C7.015.936 5.587.81 4.287.94c-1.514.153-3.042.672-3.994 1.105A.5.5 0 0 0 0 2.5v11a.5.5 0 0 0 .707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5 0 0 0 .78 0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5 0 0 0 16 13.5v-11a.5.5 0 0 0-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809 8.985.936 8 1.783z" />
</svg><span data-lang="De">Curriculum & Bildungsstandards</span><span data-lang="En">Curriculum & educational standards</span>
</button>
<button id="button_display_grp2Chart" class="list-group-item list-group-item-action"
onclick="displayController(DISPLAY.CHART2)">
<svg width="1.2em" height="1.2em" viewBox="0 0 16 16" class="bi bi-signpost list-group-icon"
fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path d="M7 1.414V4h2V1.414a1 1 0 0 0-2 0z" />
<path fill-rule="evenodd"
d="M12.532 5H2v4h10.532l1.666-2-1.666-2zM2 4a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h10.532a1 1 0 0 0 .768-.36l1.933-2.32a.5.5 0 0 0 0-.64L13.3 4.36a1 1 0 0 0-.768-.36H2z" />
<path d="M7 10h2v6H7v-6z" />
</svg><span data-lang="De">Diskursive Positionierung</span><span data-lang="En">Discursive Positioning</span>
</button>
<button id="button_display_grp3Chart" class="list-group-item list-group-item-action"
onclick="displayController(DISPLAY.CHART3)">
<svg width="1.2em" height="1.2em" viewBox="0 0 16 16"
class="bi bi-aspect-ratio-fill list-group-icon" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M1.5 2A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2h-13zm1 2a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 1 0V5h2.5a.5.5 0 0 0 0-1h-3zm11 8a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-1 0V11h-2.5a.5.5 0 0 0 0 1h3z" />
</svg><span data-lang="De">Makrodidaktische Fundierung</span><span data-lang="En">Macrodidactical Foundation</span>
</button>
<button id="button_display_grp4Chart" class="list-group-item list-group-item-action"
onclick="displayController(DISPLAY.CHART4)">
<svg width="1.2em" height="1.2em" viewBox="0 0 16 16"
class="bi bi-aspect-ratio list-group-icon" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M0 3.5A1.5 1.5 0 0 1 1.5 2h13A1.5 1.5 0 0 1 16 3.5v9a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 12.5v-9zM1.5 3a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-13z" />
<path fill-rule="evenodd"
d="M2 4.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1H3v2.5a.5.5 0 0 1-1 0v-3zm12 7a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1H13V8.5a.5.5 0 0 1 1 0v3z" />
</svg><span data-lang="De">Mikrodidaktische Fundierung</span><span data-lang="En">Microdidactical Foundation</span>
</button>
<button id="button_display_grp5Chart" class="list-group-item list-group-item-action"
onclick="displayController(DISPLAY.CHART5)">
<svg width="1.2em" height="1.2em" viewBox="0 0 16 16"
class="bi bi-card-checklist list-group-icon" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M14.5 3h-13a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5zm-13-1A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2h-13z" />
<path fill-rule="evenodd"
d="M7 5.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5zm-1.496-.854a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0l-.5-.5a.5.5 0 1 1 .708-.708l.146.147 1.146-1.147a.5.5 0 0 1 .708 0zM7 9.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5zm-1.496-.854a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0l-.5-.5a.5.5 0 0 1 .708-.708l.146.147 1.146-1.147a.5.5 0 0 1 .708 0z" />
</svg><span data-lang="De">Kognitive Strukturierung</span><span data-lang="En">Cognitive Stucturing</span>
</button>
<button id="button_display_grp6Chart" class="list-group-item list-group-item-action"
onclick="displayController(DISPLAY.CHART6)">
<svg width="1.3em" height="1.2em" viewBox="0 0 17 16"
class="bi bi-image-fill list-group-icon" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M.002 3a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-12a2 2 0 0 1-2-2V3zm1 9l2.646-2.354a.5.5 0 0 1 .63-.062l2.66 1.773 3.71-3.71a.5.5 0 0 1 .577-.094L15.002 9.5V13a1 1 0 0 1-1 1h-12a1 1 0 0 1-1-1v-1zm5-6.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0z" />
</svg><span data-lang="De">Bild- und Textkomposition</span><span data-lang="En">Image- and Textcomposition</span>
</button>
<button id="button_display_grp7Chart" class="list-group-item list-group-item-action"
onclick="displayController(DISPLAY.CHART7)">
<svg width="1.2em" height="1.2em" viewBox="0 0 16 16"
class="bi bi-check-square-fill list-group-icon" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm10.03 4.97a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z" />
</svg><span data-lang="De">Aufgabendesign</span><span data-lang="En">Task Design</span>
</button>
<button id="button_display_grp8Chart" class="list-group-item list-group-item-action mb-3"
onclick="displayController(DISPLAY.CHART8)">
<svg width="1.2em" height="1.2em" viewBox="0 0 16 16" class="bi bi-eye-fill list-group-icon"
fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path d="M10.5 8a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0z" />
<path fill-rule="evenodd"
d="M0 8s3-5.5 8-5.5S16 8 16 8s-3 5.5-8 5.5S0 8 0 8zm8 3.5a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7z" />
</svg><span data-lang="De">Anwendungstransparenz</span><span data-lang="En">Application Transparency</span>
</button>
<span class="dashboard-title font-weight-bold mb-1 mt-3 pl-3" data-lang="De">Weiteres</span>
<span class="dashboard-title font-weight-bold mb-1 mt-3 pl-3" data-lang="En">Other</span>
<!--<button id="button_display_PDF" class="list-group-item list-group-item-action" onclick="displayController(DISPLAY.PDF)">-->
<button id="button_display_PDF" data-toggle="modal" data-target="#DruckansichtModal"
class="list-group-item list-group-item-action" onclick="printview()" style="display: none !important;">
<svg width="1.2em" height="1.2em" viewBox="0 0 16 16"
class="bi bi-arrow-down-square-fill list-group-icon" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5a.5.5 0 0 0-1 0v5.793L5.354 8.146a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V4.5z" />
</svg><span data-lang="De">Druckansicht</span><span data-lang="En">Print View</span>
<div class="new p-1 pl-3 pr-3"><span data-lang="De">Neu</span><span data-lang="En">New</span></div>
</button>
<div class="modal fade" id="DruckansichtModal" tabindex="-1" role="dialog"
aria-labelledby="DruckansichtModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="DruckansichtModalLabel">Information</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" data-lang="De">
Wählen Sie <b>Menü</b> um zurück zu gelangen. Mit Rechtsklick am Rand der Seite
können Sie nun <b>Drucken...</b> auswählen.
</div>
<div class="modal-body" data-lang="En">
Choose <b>Menu</b> to return. Right click and choose
<b>print...</b>
</div>
<div class="modal-footer" data-lang="De">
<button type="button" class="btn btn-secondary"
data-dismiss="modal">Verstanden.</button>
</div>
<div class="modal-footer" data-lang="En">
<button type="button" class="btn btn-secondary"
data-dismiss="modal">Got it.</button>
</div>
</div>
</div>
</div>
<button id="button_display_JSON" class="list-group-item list-group-item-action"
onclick="displayController(DISPLAY.JSON)">
<svg width="1.2em" height="1.2em" viewBox="0 0 16 16"
class="bi bi-code-square list-group-icon" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M14 1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z">
</path>
<path fill-rule="evenodd"
d="M6.854 4.646a.5.5 0 0 1 0 .708L4.207 8l2.647 2.646a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 0 1 .708 0zm2.292 0a.5.5 0 0 0 0 .708L11.793 8l-2.647 2.646a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 0 0-.708 0z">
</path>
</svg><span data-lang="De">Einträge im JSON-Format</span><span data-lang="En">Data as JSON-Format</span>
</button>
</div>
</div>
<!-- Ende: Sidebar -->
<!-- Beginn: Page Content -->
<div id="page-content-wrapper">
<nav class="navbar navbar-expand-lg navbar-dashboard">
<button class="btn btn-primary btn-toggle" id="menu-toggle">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-layout-sidebar-inset mr-1"
fill="currentColor" xmlns="http://www.w3.org/2000/svg" style="margin-bottom:-2px">
<path fill-rule="evenodd"
d="M14 2H2a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1zM2 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2H2z" />
<path d="M3 4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4z" />
</svg>
<span data-lang="de-inline">Menü</span>
<span data-lang="en-inline">Menu</span>
</button>
</nav>
<!-- Start: UMFRAGE -->
<div class="container-fluid" id="display_umfrage">
<!-- Row _UMFRAGE Start -->
<div class="row justify-content-center">
<!-- Col _UMFRAGE Start -->
<div class="col">
<!-- Canvas _UMFRAGE Start -->
<div>
<div class="text-left">
<div class="container-fluid grey-border mt-3">
<div class="row pt-4 bg-white">
<!-- Initialisierung der Umfrage Start -->
<!-- <div style="background:transparent;" class="mt-xs-3 mt-sm-3 m-md-5 m-lg-5 mb-3" id="surveyElementContainer">-->
<div id="surveyElement" class="p-xs-3 p-sm-5 p-md-5 p-lg-5"></div>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="25"
aria-valuemin="0" aria-valuemax="100"></div>
</div>
<!-- </div>-->
<!-- Initialisierung der Umfrage End -->
</div>
</div>
</div>
</div>
<!-- Canvas _UMFRAGE Ende -->
</div>
<!-- Col _UMFRAGE Ende -->
</div>
<!-- Row _UMFRAGE Ende -->
</div>
<!-- Ende: UMFRAGE -->
<!-- Start: WILLKOMMEN -->
<div class="p-md-5 p-lg-5 m-md-3 m-lg-5 mt-5 text-center" id="display_willkommen">
<p
class="font-weight-normal lead-text pt-xs-1 pt-sm-1 pt-md-5 pt-lg-5 m-xs-1 m-sm-3 px-xs-1 px-sm-1 px-md-3 px-lg-3">
<strong data-lang="De">Analysieren und bewerten Sie ein Bildungsmedium.</strong>
<strong data-lang="En">Analyse and evaluate an educational ressource.</strong>
</p>
<div class="video-container-wrapper pb-3 pt-3 px-3 mx-auto">
<div class="video-container">
<iframe width="480" height="270" src="https://www.youtube.com/embed/SsMzuQGLJJ0"
title="YouTube video player" frameborder="0"
allowfullscreen="allowfullscreen"></iframe>
</div>
</div>
<p
class="font-weight-normal lead-text pt-xs-1 pt-sm-1 pt-md-3 pt-lg-3 px-xs-1 px-sm-1 px-md-3 px-lg-3 uebersicht-details mx-3" data-lang="De">
Sie haben die Möglichkeit, <strong>ein Lehr-Lernmittel zu bewerten</strong>, an
<strong>einer Gruppenevaluation eines Bildungsmediums teilzunehmen</strong> sowie
<strong>bereits vorhandene Bewertungssergebnisse</strong> zu laden. Nutzen Sie dazu das Menü
am linken Bildschirmrand.
</p>
<p
class="font-weight-normal lead-text pt-xs-1 pt-sm-1 pt-md-3 pt-lg-3 px-xs-1 px-sm-1 px-md-3 px-lg-3 uebersicht-details mx-3" data-lang="En">
You have the option of <strong>evaluating an educational resource</strong>, <strong>taking part in a group evaluation</strong> as well as <strong>loading existing evaluation results</strong>. To do so, use the menu on the left side of the screen.
</p>
</div>
<!-- Ende: WILLKOMMEN -->
<!-- Start: START -->
<div class="container-fluid" id="display_start">
<!-- Row _START -->
<div class="row justify-content-center">
<!-- Col _START -->
<div class="bg-white col grey-border mt-xs-3 mt-sm-3 m-md-3 m-lg-3 pt-5 pb-5 text-center">
<p class="mb-3 mt-5" data-lang="De">
Analysieren beziehungsweise evaluieren Sie ein Lehr-Lernmittel.
</p>
<p class="mb-3 mt-5" data-lang="En">
Analyse or evaluate an educational ressource.
</p>
<p class="mt-0 uebersicht-details" data-lang="De">
Sie erhalten im Anschluss einen <strong>12-stelligen Code</strong> mit dem Sie Ihre
Bewertung teilen und erneut aufrufen können.
</p>
<p class="mt-0 uebersicht-details" data-lang="En">
You will then receive a <strong>12-digit code</strong> with which you can share and revisit your rating.
</p>
<button class="btn btn-green ml-1 mr-1 mb-3" onclick="newSurvey()">
<span data-lang="De">Lehr-Lernmittel evaluieren</span>
<span data-lang="En">Evaluate educational ressource</span></button>
<p class="mb-3 mt-5" data-lang="De">
Nehmen Sie an einer Gruppenevaluation teil.
</p>
<p class="mb-3 mt-5" data-lang="En">
Take part in a group evaluation.
</p>
<p class="mt-0 uebersicht-details" data-lang="De">
Sie benötigen zur Teilnahme an einer Gruppenevaluation Ihren <strong>10-stelligen
Gruppencode</strong>.
</p>
<p class="mt-0 uebersicht-details" data-lang="En">
You will need your <strong>10-digit group code</strong> to take part in a group evaluation.
</p>
<div class="mt-3">
<input class="pt-2 pb-1 pl-3 pr-3 mb-3 ml-1 mr-1text-center" type="text"
id="loadPredefined" placeholder="10-stelliger-Code" style="width:10.5em;">
<button class="btn btn-green ml-1 mr-1"
onclick="startPredefined();"><span data-lang="De">teilnehmen</span><span data-lang="En">take part</span></button>
<br>
<div id="teilnehmen_message" style="color: red;"></div>
</div>
</div>
<!-- Col _START Ende -->
</div>
<!-- Row _START Ende -->
</div>
<!-- Ende START -->
<!-- Start: ANLEGEN -->
<div class="container-fluid" id="display_anlegen">
<!-- Row _ANLEGEN Start -->
<div class="row justify-content-center">
<!-- Col _ANLEGEN Start -->
<div class="bg-white col grey-border mt-xs-3 mt-sm-3 m-md-3 m-lg-3 pt-5 pb-5 px-xs-1 px-sm-3 px-md-3 px-lg-5 text-left"
id="survey_anlegen1">
<p class="mb-3 mt-5 text-center" data-lang="De">
<strong>Legen Sie hier eine neue Gruppenevaluation an.</strong>
</p>
<p class="mb-3 mt-5 text-center" data-lang="En">
<strong>Create a group evaluation here.</strong>
</p>
<p class="mt-0 text-center uebersicht-details" data-lang="De">
Geben Sie hier die Basisdaten des Lehr-Lernmittels ein, die für alle
Teilnehmer*innen übernommen werden. Sie erhalten nach Abschluss einen
<strong>10-stelligen Gruppencode</strong>, mit dem Sie andere Teilnehmende zu Ihrer
Gruppenevaluation einladen können.
</p>
<p class="mt-0 text-center uebersicht-details" data-lang="En">
Enter here the base data of the educational ressource, which serves as a blueprint for further participants.
You will receive a <strong>10 characters long code</strong> which may be shared with participants.
</p>
<div class="mt-5">
<span data-lang="De">Wie lautet der Name des Lehr-Lernmittels?</span>
<span data-lang="En">What is the name of the educational ressource?</span>
<input class="form-control" type="text" id="survey_tname">
<br>
<span data-lang="De">Bitte geben Sie den Link zum Lehr-Lernmittel an. (optional)</span>
<span data-lang="En">Please insert a link to the ressource. (optional)</span>
<input class="form-control" type="text" id="survey_link">
<br>
<span data-lang="De">Welchem Fach ist das Lehr-Lernmittel zugeordnet?</span>
<span data-lang="En">To which subject is the ressource related?</span>
<select class="form-control" id="survey_subject"></select>
<br>
<span data-lang="De">Welcher Schulart ist das Lehr-/ Lernmittel zugeordnet?</span>
<span data-lang="En">To which type of school is the educational ressource related?</span>
<br>
<select class="form-control" id="survey_institution"></select>
<br>
<br>
<div class="text-center">
<button class="btn btn-green ml-1 mr-1"
onclick="newPredefined();"><span data-lang="De">Gruppenevaluation anlegen</span><span data-lang="En">Create group evaluation</span></button>
</div>
<br>
<div id="newPredefined_message" style="color: red;"></div>
</div>
</div>
<!-- Col _ANLEGEN Ende -->
</div>
<!-- Row _ANLEGEN Ende -->
</div>
<!-- Ende: ANLEGEN -->
<!-- Start: ANLEGEN_NEXT -->
<div class="container-fluid" id="display_anlegen_next">
<!-- Beginn Container _ANLEGEN_NEXT -->
<div class="container-fluid">
<!-- Row _ANLEGEN_NEXT Start -->
<div class="row justify-content-center">
<!-- Col _ANLEGEN_NEXT Start -->
<div class="col">
<!-- Canvas _ANLEGEN_NEXT Start -->
<div>
<div class="text-left">
<div class="container-fluid grey-border mt-3">
<div class="row pt-4 bg-white">
<div class="bg-white mt-xs-3 mt-sm-3 m-md-5 m-lg-5 pt-5 pb-5 pl-5 pr-5 text-center"
style="box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);">
<p class="mt-5" data-lang="De">Es wurde erfolgreich eine Gruppenevaluation
angelegt. Bitte kopieren Sie den angegebenen Code und geben
diesen an die weiteren Teilnehmer*innen weiter. Sie können
direkt fortfahren und Ihre eigenen Bewertung vornehmen, wenn
Sie möchten.</p>
<p class="mt-5" data-lang="En">A group evaluation was succesfully created.
You may share the given code with participants. You can proceed and fill out
an evaluation.</p>
<div class="mt-3">
<div id="anlegen_next_message" style="color: green;"></div>
<button class="btn btn-green ml-1 mr-1"
onclick="startNewPredefined();"><span data-lang="De">Eigene Bewertung
vornehmen</span><span data-lang="En">Proceed with own evaluation</span></button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Canvas _ANLEGEN_NEXT Ende -->
</div>
<!-- Col _ANLEGEN_NEXT Ende -->
</div>
<!-- Row _ANLEGEN_NEXT Ende -->
</div>
<!-- Ende Container _ANLEGEN_NEXT -->
</div>
<!-- Ende: ANLEGEN_NEXT -->
<!-- Start: AUSWERTEN -->
<div class="container-fluid" id="display_auswerten">
<!-- Row _AUSWERTEN Start -->
<div class="row justify-content-center">
<!-- Col _AUSWERTEN Start -->
<div class="bg-white col grey-border mt-xs-3 mt-sm-3 m-md-3 m-lg-3 pt-5 pb-5 text-center">
<!-- Canvas _AUSWERTEN Start -->
<p class="mt-5" data-lang="De">Laden Sie die Ergebnisse einer <strong>Gruppenevaluation</strong>
mittels Ihres Gruppencodes (10-stellig).</p>
<p class="mt-5" data-lang="En">Load results of a <strong>group evaluation</strong>
with your 10 characters long code.</p>
<div class="mt-3">
<input class="pt-2 pb-1 pl-3 pr-3 mb-3 ml-1 mr-1 text-center" type="text"
id="loadResultSet" placeholder="10-stelliger-Code" style="width:10.5em;">
<button class="btn btn-green ml-1 mr-1" onclick="evaluateSet();"><span data-lang="De">Gruppenergebnis
laden</span><span data-lang="En">Load group result</span></button>
<div id="evaluateResultSet_message" style="color: red;"></div>
</div>
<div class="mt-5">
<p data-lang="De">Laden Sie die Ergebnisse einer <strong>Einzelevaluation</strong> mittels Ihres
Einzelcodes (12-stellig).</p>
<p data-lang="En">Load result of a <strong>single evaluation</strong> with your 12 characters long code.</p>
<div class="mt-3">
<input class="pt-2 pb-1 pl-3 pr-3 mb-3 ml-1 mr-1 text-center" type="text"
id="loadResult" placeholder="12-stelliger-Code" style="width:10.5em;">
<button class="btn btn-green ml-1 mr-1"
onclick="evaluateResult();"><span data-lang="De">Einzelergebnis laden</span><span data-lang="En">Load single result</span></button>
<br>
<br>
<div id="evaluateResult_message" style="color: red;"></div>
</div>
</div>
<!-- Canvas _AUSWERTEN Ende -->
</div>
<!-- Col _AUSWERTEN Ende -->
</div>
<!-- Ende: Row _AUSWERTEN -->
</div>
<!-- Ende: AUSWERTEN -->
<!-- Ende: Overall Chart -->
<!-- Start: Dankesnachricht -->
<div class="p-md-5 p-lg-5 m-md-3 m-lg-5 mt-5 text-center" id="display_thanks">
<p
class="font-weight-normal lead-text pt-xs-1 pt-sm-1 pt-md-5 pt-lg-5 m-xs-1 m-sm-3 px-xs-1 px-sm-1 px-md-3 px-lg-3" data-lang="De">
Ihre Daten in <strong>visualisierter Form finden Sie links unter "Auswertung"</strong></p>
<p
class="font-weight-normal lead-text pt-xs-1 pt-sm-1 pt-md-5 pt-lg-5 m-xs-1 m-sm-3 px-xs-1 px-sm-1 px-md-3 px-lg-3" data-lang="En">
The data in <strong>visualised form can be looked up under "Report"</strong></p>
<p class="resultate_info lead-text px-xs-1 px-sm-1 px-md-3 px-lg-3" data-lang="De">Wir hoffen, Ihre Bewertungen
helfen Ihnen bei der Entscheidung über die <strong>Nutzung des Bildungsmediums</strong> in
Unterricht und Schule.</p>
<p class="resultate_info lead-text px-xs-1 px-sm-1 px-md-3 px-lg-3" data-lang="En">We hope your assessment will help to decide which <strong>educational ressource</strong> to use
for education.</p>
</div>
<!-- Ende: Dankesnachricht -->
<!-- Start: overallChart -->
<div class="container-fluid" id="display_overallChart">
<!-- Beginn Container Übersicht -->
<div class="container-fluid">
<!-- Row Übersicht Start -->
<div class="row justify-content-center">
<!-- Col Übersicht Start -->
<div class="col">
<!-- Canvas Übersicht Start -->
<div id="uebersicht">
<div class="text-left">
<div class="container-fluid grey-border mt-3">
<div class="row pt-4 bg-white">
<div class="col">
<p id="name_lernmittel" class="lehr-lernmittel-name mb-0">
<span data-lang="De">Name des Lehr-Lernmittels</span><span data-lang="En">Name of educational ressource</span>
</p>
<div id="text-container" class="container-fluid mb-3">
<div class="row pt-1 pb-1 lehr-lernmittel-heading">
<div
class="col-xs-12 col-sm-12 col-md-12 col-lg-12 col-xl-5 pl-0 pr-0">
<p class="lehr-lernmittel-heading mb-2 mt-3 pl-3">
<span data-lang="De">Ihr Abrufcode</span><span data-lang="En">Your code</span></p>
<div style="background-color: #f1f3fa; border-bottom-left-radius: 7px; border-top-left-radius: 7px; min-height:76px;"
class="pt-3 pb-3 pl-3 pr-3">
<a id="display_id"
style="word-break:break-word; font-weight:400; font-size:80%;"
target="_blank" rel="noopener"
alt="Verlinkung zum Lehr- und Lernmittel"></a>
</div>
</div>
<div
class="col-xs-12 col-sm-12 col-md-12 col-lg-12 col-xl-5 pl-0 pr-0">
<p class="lehr-lernmittel-heading mb-2 mt-3 pl-3">
<span data-lang="De">Verlinkung</span><span data-lang="En">Link</span></p>
<div style="background-color: #f1f3fa; border-bottom-left-radius: 7px; border-top-left-radius: 7px; min-height:76px;"
class="pt-3 pb-3 pl-3 pr-3">
<a id="link_lernmittel"
style="word-break:break-word; font-weight:400; font-size:80%;"
target="_blank" rel="noopener"
alt="Verlinkung zum Lehr- und Lernmittel"></a>
</div>
</div>
<div
class="col-xs-12 col-sm-12 col-md-12 col-lg-12 col-xl-3 pl-0 pr-0">
<p class="lehr-lernmittel-heading mb-2 mt-3 pl-3">
<span data-lang="De">Schulart</span><span data-lang="En">type of school</span></p>
<div style="background-color: #f1f3fa; min-height:76px;"
class="pt-3 pb-3 pl-3 pr-3">
<a id="schulart"
style="word-break:break-word; font-weight:400; font-size:80%;"></a>
</div>
</div>
<div
class="col-xs-12 col-sm-12 col-md-12 col-lg-12 col-xl-2 mt-3 pl-0 pr-0">
<p class="mb-2 pl-3 lehr-lernmittel-heading"><span data-lang="De">Fach</span><span data-lang="En">Subject</span>
</p>
<div style="background-color: #f1f3fa; min-height:76px;"
class="pt-3 pb-3 pl-3">
<a id="fach"
style="word-break:break-word; font-weight:400; font-size:80%;"></a>
</div>
</div>
<div
class="col-xs-12 col-sm-12 col-md-12 col-lg-12 col-xl-2 mt-3 pl-0 pr-0">
<p class="mb-2 pl-3 lehr-lernmittel-heading"><span data-lang="De">Datum</span><span data-lang="En">Date</span>
</p>
<div style="background-color: #f1f3fa; border-bottom-right-radius: 7px; border-top-right-radius: 7px; min-height:76px;"
class="pt-3 pb-3 pl-3 pr-3">
<a id="datum_lernmittel"
style="word-break:break-word; font-weight:400; font-size:80%;"></a>
</div>
</div>
<div
class="col-xs-12 col-sm-12 col-md-12 col-lg-12 col-xl-12 mt-3 pl-0 pr-0">
<p class="mb-2 pl-3 lehr-lernmittel-heading">
<span data-lang="De">Anmerkungen</span><span data-lang="En">Comments</span></p>
<div style="background-color: #f1f3fa; border-radius: 7px; min-height:76px;"
class="pt-3 pb-3 pl-3 pr-3">
<a id="anmerkungen"
style="word-break:break-word; font-weight:400; font-size:80%;"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid grey-border mt-3">
<div class="row pt-4 bg-white">
<div class="col text-right" style="max-width:fit-content;">
<svg width="2em" height="2em" viewBox="0 0 16 16"
class="bi bi-info-circle-fill" fill="currentColor"
xmlns="http://www.w3.org/2000/svg" style="color:#009688;">
<path fill-rule="evenodd"
d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm.93-9.412l-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533L8.93 6.588zM8 5.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2z" />
</svg>
</div>
<div class="col pl-0">
<p style="font-size:80% !important;">
<span data-lang="De">
Ihre Bewertungen werden in dieser Darstellung in
absteigender Reihenfolge - <strong>der Wertigkeit
nach</strong> - visualisiert. Während <em>0</em> für
<em>nicht bewertbar</em> steht, repräsentieren <em>1 =
trifft nicht zu</em>, <em>2 = trifft weniger zu</em>,
<em>3 = trifft mehr zu</em> und <em>4 = trifft voll zu</em>.
Diese Indexierung gilt für alle Auswertungen.
</span><span data-lang="En">
Values will be displayed in descending order with following meanings:
<em>0 = not assessable</em>
<em>1 = not correct at all</em>,
<em>2 = rather not correct</em>,
<em>3 = rather correct</em> and <em>4 - fully correct</em>.
This indexing holds for all evaluations.
</span>
</p>
</div>
</div>
</div>
</div>
<div class="d-flex justify-content-center mt-3 mb-3 p-3 bg-white grey-border"
style="height:1200px !important;">
<canvas id="overallChart"
style="max-width: 1450px; height: 1200px !important;"></canvas>
</div>
<br>
<br>
<br>
<br>
<br>
<br>
<div class="d-flex justify-content-center mt-3 mb-3 p-3 bg-white grey-border"
style="height:700px !important;">
<canvas id="radarChart"
style="max-width: 1450px; height: 700px !important;"></canvas>
</div>
</div>
<!-- Canvas Übersicht Ende -->
</div>
<!-- Col Übersicht Ende -->
</div>
<!-- Row Übersicht Ende -->
</div>
<!-- Ende Container Übersicht -->
</div>
<!-- Ende: Overall Chart -->
<br>