Skip to content

Commit

Permalink
Show new group types on active groups page, but see #3393. Commit rea…
Browse files Browse the repository at this point in the history
…dy for merge.

 - Legacy-Id: 19313
  • Loading branch information
rjsparks committed Sep 1, 2021
1 parent 4240ce0 commit aeff343
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ietf/group/views.py
Expand Up @@ -300,7 +300,7 @@ def active_groups(request, group_type=None):
raise Http404

def active_group_types(request):
grouptypes = GroupTypeName.objects.filter(slug__in=['wg','rg','ag','rag','team','dir','review','area','program']).filter(group__state='active').annotate(group_count=Count('group'))
grouptypes = GroupTypeName.objects.filter(slug__in=['wg','rg','ag','rag','team','dir','review','area','program','iabasg','adm']).filter(group__state='active').annotate(group_count=Count('group'))
return render(request, 'group/active_groups.html', {'grouptypes':grouptypes})

def active_dirs(request):
Expand Down

0 comments on commit aeff343

Please sign in to comment.