Skip to content
Snippets Groups Projects
Commit 346638e3 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

- Add holidays

- Check "show_plan" permission in dashboard
parent 439b33ae
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,7 @@ def get_plan(type, id, smart=False, monday_of_week=None):
lessons = parse()
times_parsed = parse_lesson_times()
hols_for_weekday = []
hols_for_weekdays = []
if smart:
week_days = [monday_of_week + datetime.timedelta(days=i) for i in range(5)]
......@@ -80,7 +80,7 @@ def get_plan(type, id, smart=False, monday_of_week=None):
subs_for_weekday.append(subs)
hols = get_today_holidays(week_day)
hols_for_weekday.append(hols)
hols_for_weekdays.append(hols)
# print(subs)
# print(len(subs))
......@@ -168,9 +168,9 @@ def get_plan(type, id, smart=False, monday_of_week=None):
element_container.is_old = True
# Check for holidays
if smart and hols_for_weekday[time.day - 1]:
if smart and hols_for_weekdays[time.day - 1]:
element_container.is_hol = True
element_container.element.holiday_reason = hols_for_weekday[time.day - 1][0].name
element_container.element.holiday_reason = hols_for_weekdays[time.day - 1][0].name
if type != TYPE_ROOM or i == room_index:
# Add this container object to the LessonContainer object in the plan array
......@@ -236,4 +236,4 @@ def get_plan(type, id, smart=False, monday_of_week=None):
for j in range(event.event.from_lesson - 1, event.event.to_lesson):
plan[j][0][i].append(element_container)
return plan, hols_for_weekday
return plan, hols_for_weekdays
......@@ -42,4 +42,6 @@ def get_plan_for_day(_type, plan_id, date):
# Get plan
plan, holidays = get_plan(_type, plan_id, smart=True, monday_of_week=monday_of_week)
lessons = [(row[week_day], time) for row, time in plan]
return lessons
holidays_for_date = holidays[week_day]
return lessons, holidays_for_date
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment