diff --git a/ietf/community/rules.py b/ietf/community/rules.py index 95c6c3099..a77b36570 100644 --- a/ietf/community/rules.py +++ b/ietf/community/rules.py @@ -67,7 +67,7 @@ class AdResponsibleRule(RuleManager): return Document.objects.filter(type='draft', states__slug='active').filter(ad=self.value).distinct() def options(self): - return [(i.pk, i.name) for i in Person.objects.filter(role__name='ad',group__state='active').distinct().order_by('name')] + return [(i.pk, i.name) for i in Person.objects.filter(role__name='ad',role__group__state='active').distinct().order_by('name')] def show_value(self): try: