Skip to content
Snippets Groups Projects
Commit e65165dd authored by Julian's avatar Julian
Browse files

Fix the bug

parent d963baab
No related branches found
No related tags found
No related merge requests found
...@@ -196,8 +196,8 @@ def plan(request, plan_type, plan_id, regular="", year=None, calendar_week=None) ...@@ -196,8 +196,8 @@ def plan(request, plan_type, plan_id, regular="", year=None, calendar_week=None)
"weeks": get_calendar_weeks(year=year), "weeks": get_calendar_weeks(year=year),
"selected_week": calendar_week, "selected_week": calendar_week,
"selected_year": year, "selected_year": year,
"short_week_days": zip(SHORT_WEEK_DAYS, holidays), "short_week_days": zip(SHORT_WEEK_DAYS, holidays) if smart else zip(SHORT_WEEK_DAYS),
"long_week_days": zip(LONG_WEEK_DAYS, holidays), "long_week_days": zip(LONG_WEEK_DAYS, holidays) if smart else zip(LONG_WEEK_DAYS),
"holidays": holidays, "holidays": holidays,
"hints": hints, "hints": hints,
"hints_b": hints_b, "hints_b": hints_b,
......
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