There was an error while loading. Please reload this page.
1 parent bc9cbb9 commit 66bbc97Copy full SHA for 66bbc97
1 file changed
ietf/community/templatetags/community_tags.py
@@ -25,7 +25,7 @@ def render(self, context):
25
managed_areas = [i.group for i in Role.objects.filter(name__slug='ad', email__in=person.email_set.all())]
26
for area in managed_areas:
27
groups.append(CommunityList.objects.get_or_create(group=area)[0])
28
- managed_wg = [i.group for i in Role.objects.filter(name__slug='chair', group__type__slug='wg', group__state_id__slug__in=("active", "bof", "proposed", "replaced"), email__in=person.email_set.all())]
+ managed_wg = [i.group for i in Role.objects.filter(name__slug='chair', group__type__slug='wg', group__state__slug__in=("active", "bof", "proposed", "replaced"), email__in=person.email_set.all())]
29
for wg in managed_wg:
30
groups.append(CommunityList.objects.get_or_create(group=wg)[0])
31
lists['group'] = groups
0 commit comments