Skip to content

Commit 1d18e96

Browse files
committed
Merged in [9775] from rcross@amsl.com:
Add proposed groups to Blue Dot Report. Fixes ietf-tools#1747. - Legacy-Id: 9791 Note: SVN reference [9775] has been migrated to Git commit 81d4ba9
2 parents c1a9ec3 + 81d4ba9 commit 1d18e96

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ietf/secr/groups/views.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,17 +125,17 @@ def add(request):
125125
@role_required('Secretariat')
126126
def blue_dot(request):
127127
'''
128-
This is a report view. It returns a text/plain listing of chairs for active and bof groups.
128+
This is a report view. It returns a text/plain listing of working group chairs.
129129
'''
130130
people = Person.objects.filter(role__name__slug='chair',
131131
role__group__type='wg',
132-
role__group__state__slug__in=('active','bof')).distinct()
132+
role__group__state__slug__in=('active','bof','proposed')).distinct()
133133
chairs = []
134134
for person in people:
135135
parts = person.name_parts()
136136
groups = [ r.group.acronym for r in person.role_set.filter(name__slug='chair',
137137
group__type='wg',
138-
group__state__slug__in=('active','bof')) ]
138+
group__state__slug__in=('active','bof','proposed')) ]
139139
entry = {'name':'%s, %s' % (parts[3], parts[1]),
140140
'groups': ', '.join(groups)}
141141
chairs.append(entry)

0 commit comments

Comments
 (0)