Make materials links on the ietf materials page visible to group delegates.

- Legacy-Id: 13939
This commit is contained in:
Henrik Levkowetz 2017-07-19 11:45:35 +00:00
parent 3b4992d2b7
commit 7751f54742

View file

@ -17,9 +17,9 @@ def managed_groups(user):
# state__slug='active').select_related("type"))
groups.extend(Group.objects.filter(
role__name__slug='chair',
role__name__slug__in=['chair', 'delegate', ],
role__person__user=user,
type__slug__in=('rg', 'wg', 'ag'),
type__slug__in=('rg', 'wg', 'ag', 'ietf'),
state__slug__in=('active', 'bof')).select_related("type"))
return groups