Skip to content

Commit

Permalink
fix: Add order_number to sessions in group.views.meetings() (#5209)
Browse files Browse the repository at this point in the history
  • Loading branch information
jennifer-richards committed Feb 24, 2023
1 parent cbe534e commit 0ec1264
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ietf/group/views.py
Expand Up @@ -820,6 +820,9 @@ def meetings(request, acronym=None, group_type=None):
).filter(
current_status__in=['sched','schedw','appr','canceled'],
)
sessions = list(sessions)
for s in sessions:
s.order_number = s.order_in_meeting()

future, in_progress, recent, past = group_sessions(sessions)

Expand Down

0 comments on commit 0ec1264

Please sign in to comment.