Enabled Webuntis Holiday query
Implemented Holiday view in Timetable
Hide other special time regions like breaks when shown in holiday
This commit is contained in:
2024-01-07 21:19:39 +01:00
parent dce569cb99
commit 591bbbeb45
5 changed files with 76 additions and 51 deletions

View File

@ -0,0 +1,5 @@
extension IsSameDay on DateTime {
bool isSameDay(DateTime other) {
return year == other.year && month == other.month && day == other.day;
}
}