Skip to content

Commit

Permalink
year filter bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pancham1603 committed Feb 3, 2024
1 parent e61080e commit 7059f35
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions apps/nightpass/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
from datetime import datetime, date, timedelta

sem_vs_year = {
1: 1,
2: 1,
3: 2,
4: 2,
5: 3,
6: 3,
7: 4,
8: 4,
"1": 1,
"2": 1,
"3": 2,
"4": 2,
"5": 3,
"6": 3,
"7": 4,
"8": 4,
}

@login_required
Expand Down

0 comments on commit 7059f35

Please sign in to comment.