File tree Expand file tree Collapse file tree 4 files changed +70
-45
lines changed Expand file tree Collapse file tree 4 files changed +70
-45
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
- <v-container >
2
+ <v-container class = " container-sm " >
3
3
<v-breadcrumbs :items =" breadcrumbs" ></v-breadcrumbs >
4
4
5
5
<v-row >
6
6
<v-col
7
- cols =" 3 "
7
+ cols =" 6 "
8
8
v-for =" link of links"
9
9
:key =" link.text"
10
10
>
Original file line number Diff line number Diff line change 1
1
<template >
2
- <v-container >
2
+ <v-container class = " container-sm " >
3
3
<v-breadcrumbs :items =" breadcrumbs" />
4
4
5
5
<h1 >Classrooms</h1 >
Original file line number Diff line number Diff line change 19
19
<span v-if =" student !== null" >{{ student.email }}</span >
20
20
</v-card-subtitle >
21
21
<v-card-text >
22
- <v-simple-table >
23
- <thead >
24
- <tr >
25
- <th >Reading</th >
26
- <th >Passage 1</th >
27
- <th >Passage 2</th >
28
- <th >Passage 3</th >
29
- <th >Total</th >
30
- <th >Band score</th >
31
- </tr >
32
- </thead >
33
- <tbody >
34
- <tr
35
- v-for =" report of reports"
36
- :key =" report.pk"
37
- class =" cursor-pointer"
38
- @click =" $router.push({
39
- name: 'ReadingExerciseSubmitResult',
40
- params: {
41
- pk: classroom.pk,
42
- exercisePk: report.exercise.pk,
43
- studentPk
44
- }
45
- })"
46
- >
47
- <td >{{ report.exercise.identifier }}</td >
48
- <template v-if =" ! report .submitted " >
49
- <td colspan =" 6" >
50
- Not submitted
51
- </td >
52
- </template >
53
- <template v-else >
54
- <td >{{ report.passage_1_total }}</td >
55
- <td >{{ report.passage_2_total }}</td >
56
- <td >{{ report.passage_3_total }}</td >
57
- <td >{{ report.total }}</td >
58
- <td >{{ report.band_score }}</td >
59
- </template >
60
- </tr >
61
- </tbody >
62
- </v-simple-table >
22
+ <v-row >
23
+ <v-col cols =" 6" >
24
+ <v-simple-table >
25
+ <thead >
26
+ <tr >
27
+ <th >Reading</th >
28
+ <th >Passage 1</th >
29
+ <th >Passage 2</th >
30
+ <th >Passage 3</th >
31
+ <th >Total</th >
32
+ <th >Band score</th >
33
+ </tr >
34
+ </thead >
35
+ <tbody >
36
+ <tr
37
+ v-for =" report of reports"
38
+ :key =" report.pk"
39
+ class =" cursor-pointer"
40
+ @click =" $router.push({
41
+ name: 'ReadingExerciseSubmitResult',
42
+ params: {
43
+ pk: classroom.pk,
44
+ exercisePk: report.exercise.pk,
45
+ studentPk
46
+ }
47
+ })"
48
+ >
49
+ <td >{{ report.exercise.identifier }}</td >
50
+ <template v-if =" ! report .submitted " >
51
+ <td colspan =" 6" >
52
+ Not submitted
53
+ </td >
54
+ </template >
55
+ <template v-else >
56
+ <td >{{ report.passage_1_total }}</td >
57
+ <td >{{ report.passage_2_total }}</td >
58
+ <td >{{ report.passage_3_total }}</td >
59
+ <td >{{ report.total }}</td >
60
+ <td >{{ report.band_score }}</td >
61
+ </template >
62
+ </tr >
63
+ </tbody >
64
+ </v-simple-table >
65
+ </v-col >
66
+ <v-divider vertical ></v-divider >
67
+ <v-col cols =" 6" >
68
+ <v-simple-table >
69
+ <thead >
70
+ <tr >
71
+ <th >Listening</th >
72
+ <th >Section 1</th >
73
+ <th >Section 2</th >
74
+ <th >Section 3</th >
75
+ <th >Section 4</th >
76
+ <th >Total</th >
77
+ <th >Band score</th >
78
+ </tr >
79
+ </thead >
80
+ <tbody >
81
+ <tr >
82
+ <td colspan =" 7" >Coming soon</td >
83
+ </tr >
84
+ </tbody >
85
+ </v-simple-table >
86
+ </v-col >
87
+ </v-row >
63
88
</v-card-text >
64
89
</v-card >
65
90
</div >
Original file line number Diff line number Diff line change 1
1
<template >
2
- <v-container >
2
+ <v-container class = " container-sm " >
3
3
<v-breadcrumbs :items =" breadcrumbs" ></v-breadcrumbs >
4
4
5
5
<h1 >Manage reading exercises</h1 >
You can’t perform that action at this time.
0 commit comments