-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTimetableDates.js
78 lines (78 loc) · 1.35 KB
/
TimetableDates.js
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
var stundenPlan = {
days:[{},{
name: "Montag",
subjects: [{
teacher: "D. Stücklin",
room: "WST1-1-114",
from: "08:35",
to: "10:05",
theme: "Geschichte"
},
{
teacher: "Ch. Müller",
room: "WST1-1-114",
from: "10:25",
to: "11:55",
theme: "Marketing"
},
{
teacher: "B. Hofer",
room: "WST1-1-114",
from: "12:45",
to: "14:15",
theme: "Informatik"
},
{
teacher: "R. Siedler",
room: "WST1-1-114",
from: "14:40",
to: "16:10",
theme: "Wirtschaft"
}]
},{
name: "Dienstag",
subjects: [{
teacher: "S. Dunkel",
room: "WST1-1-401",
from: "08:35",
to: "10:05",
theme: "Multimedia Konzept"
},
{
teacher: "R. Siedler",
room: "WST1-1-401",
from: "10:25",
to: "12:50",
theme: "Rechnungswesen"
},
{
teacher: "T. Vulpi",
room: "WST1-1-114",
from: "13:40",
to: "14:25",
theme: "Deutsch"
},
{
teacher: "R. Schamberger",
room: "WST1-1-114",
from: "14:30",
to: "15:15",
theme: "Englisch"
},
{
teacher: "O. Genzoni",
room: "WST11 H3",
from: "15:30",
to: "17:00",
theme: "Sport"
},
{
teacher: "R. Siedler & R. Schamberger",
room: "WST1-1-114",
from: "17:05",
to: "17:50",
theme: "IdPA"
}]
}
]
}