Skip to content

Commit 55935ea

Browse files
committed
Merged in [15828] from rjsparks@nostrum.com:
Show more group types on the concluded groups page. Fixes ietf-tools#2643. - Legacy-Id: 15871 Note: SVN reference [15828] has been migrated to Git commit ac4deed
2 parents 0cc7f73 + ac4deed commit 55935ea

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

ietf/group/views.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,10 @@ def concluded_groups(request):
405405
sections['WGs'] = Group.objects.filter(type='wg', state="conclude").select_related("state", "charter").order_by("parent__name","acronym")
406406
sections['RGs'] = Group.objects.filter(type='rg', state="conclude").select_related("state", "charter").order_by("parent__name","acronym")
407407
sections['BOFs'] = Group.objects.filter(type='wg', state="bof-conc").select_related("state", "charter").order_by("parent__name","acronym")
408+
sections['AGs'] = Group.objects.filter(type='ag', state="conclude").select_related("state", "charter").order_by("parent__name","acronym")
409+
sections['Directorates'] = Group.objects.filter(type='dir', state="conclude").select_related("state", "charter").order_by("parent__name","acronym")
410+
sections['Review teams'] = Group.objects.filter(type='review', state="conclude").select_related("state", "charter").order_by("parent__name","acronym")
411+
sections['Teams'] = Group.objects.filter(type='team', state="conclude").select_related("state", "charter").order_by("parent__name","acronym")
408412

409413
for name, groups in sections.items():
410414

0 commit comments

Comments
 (0)