From ac4deed50044d30671d8d543705d5261a9f3efed Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Mon, 17 Dec 2018 21:34:30 +0000 Subject: [PATCH] Show more group types on the concluded groups page. Fixes #2643. Commit ready for merge. - Legacy-Id: 15828 --- ietf/group/views.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ietf/group/views.py b/ietf/group/views.py index 9c4110840..9bc475402 100644 --- a/ietf/group/views.py +++ b/ietf/group/views.py @@ -405,6 +405,10 @@ def concluded_groups(request): sections['WGs'] = Group.objects.filter(type='wg', state="conclude").select_related("state", "charter").order_by("parent__name","acronym") sections['RGs'] = Group.objects.filter(type='rg', state="conclude").select_related("state", "charter").order_by("parent__name","acronym") sections['BOFs'] = Group.objects.filter(type='wg', state="bof-conc").select_related("state", "charter").order_by("parent__name","acronym") + sections['AGs'] = Group.objects.filter(type='ag', state="conclude").select_related("state", "charter").order_by("parent__name","acronym") + sections['Directorates'] = Group.objects.filter(type='dir', state="conclude").select_related("state", "charter").order_by("parent__name","acronym") + sections['Review teams'] = Group.objects.filter(type='review', state="conclude").select_related("state", "charter").order_by("parent__name","acronym") + sections['Teams'] = Group.objects.filter(type='team', state="conclude").select_related("state", "charter").order_by("parent__name","acronym") for name, groups in sections.items():