Skip to content

Commit c44d7b4

Browse files
committed
Merged in [11988] from rcross@amsl.com:
Fix issue with proceedings for training sessions. - Legacy-Id: 12020 Note: SVN reference [11988] has been migrated to Git commit c1cc1d6
2 parents 26fcce9 + c1cc1d6 commit c44d7b4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/secr/proceedings/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def ajax_generate_proceedings(request, meeting_num):
190190
'''
191191
meeting = get_object_or_404(Meeting, number=meeting_num)
192192
areas = Group.objects.filter(type='area',state='active').order_by('name')
193-
others = TimeSlot.objects.filter(meeting=meeting,type='other').order_by('time')
193+
others = TimeSlot.objects.filter(sessionassignments__schedule=meeting.agenda,type='other').order_by('time')
194194
extras = get_extras(meeting)
195195
context = {'meeting':meeting,
196196
'areas':areas,

0 commit comments

Comments
 (0)