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)