We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 996fc71 commit 5ea3051Copy full SHA for 5ea3051
ietf/meeting/views.py
@@ -1035,8 +1035,13 @@ def redirect_with_scroll():
1035
for r in rooms:
1036
ts = []
1037
for t in timeslots_by_day_and_room.get((d, r.pk), []):
1038
+ # FIXME: the database (as of 2020) contains spurious
1039
+ # regular time slots in rooms not intended for regular
1040
+ # sessions - once those are gone, this filter can go
1041
+ # away
1042
if t.type_id == 'regular' and not any(t.slug == 'regular' for t in r.session_types.all()):
1043
continue
1044
+
1045
t.assigned_sessions = []
1046
for a in assignments_by_timeslot.get(t.pk, []):
1047
s = sessions_by_pk.get(a.session_id)
0 commit comments