We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 26fcce9 + c1cc1d6 commit c44d7b4Copy full SHA for c44d7b4
1 file changed
ietf/secr/proceedings/views.py
@@ -190,7 +190,7 @@ def ajax_generate_proceedings(request, meeting_num):
190
'''
191
meeting = get_object_or_404(Meeting, number=meeting_num)
192
areas = Group.objects.filter(type='area',state='active').order_by('name')
193
- others = TimeSlot.objects.filter(meeting=meeting,type='other').order_by('time')
+ others = TimeSlot.objects.filter(sessionassignments__schedule=meeting.agenda,type='other').order_by('time')
194
extras = get_extras(meeting)
195
context = {'meeting':meeting,
196
'areas':areas,
0 commit comments