From 81d4ba99edd113dcfb490b318a0aae2168c26a61 Mon Sep 17 00:00:00 2001 From: Ryan Cross Date: Sat, 18 Jul 2015 10:25:59 +0000 Subject: [PATCH] Add proposed groups to Blue Dot Report. Fixes #1747. Commit ready for merge - Legacy-Id: 9775 --- ietf/secr/groups/views.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ietf/secr/groups/views.py b/ietf/secr/groups/views.py index 6bb2ff78e..9223223d8 100644 --- a/ietf/secr/groups/views.py +++ b/ietf/secr/groups/views.py @@ -125,17 +125,17 @@ def add(request): @role_required('Secretariat') def blue_dot(request): ''' - This is a report view. It returns a text/plain listing of chairs for active and bof groups. + This is a report view. It returns a text/plain listing of working group chairs. ''' people = Person.objects.filter(role__name__slug='chair', role__group__type='wg', - role__group__state__slug__in=('active','bof')).distinct() + role__group__state__slug__in=('active','bof','proposed')).distinct() chairs = [] for person in people: parts = person.name_parts() groups = [ r.group.acronym for r in person.role_set.filter(name__slug='chair', group__type='wg', - group__state__slug__in=('active','bof')) ] + group__state__slug__in=('active','bof','proposed')) ] entry = {'name':'%s, %s' % (parts[3], parts[1]), 'groups': ', '.join(groups)} chairs.append(entry)