File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -125,17 +125,17 @@ def add(request):
125125@role_required ('Secretariat' )
126126def 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 )
You can’t perform that action at this time.
0 commit comments