diff options
author | Dan McGee <dan@archlinux.org> | 2011-02-27 11:42:27 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-02-27 11:42:27 -0600 |
commit | 1fe833e18d2f7db563302f18f71e3a07e27b169c (patch) | |
tree | 99770a6cecbb345ef929e77c7fbb4c7bce9112f8 /public | |
parent | 02e9c4b8f3f005af2a39a1927dd6d693fa4238f0 (diff) |
Screen Fellows based on group membership as well
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'public')
-rw-r--r-- | public/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/views.py b/public/views.py index 7d10e74f..551e1e18 100644 --- a/public/views.py +++ b/public/views.py @@ -26,7 +26,7 @@ def userlist(request, type='Developers'): users = users.filter(is_active=True, groups__name="Trusted Users") msg = "Here are all your friendly Arch Linux Trusted Users who are in charge of the [community] repository." elif type == 'Fellows': - users = users.filter(is_active=False) + users = users.filter(is_active=False, groups__name__in=["Developers", "Trusted Users"]) msg = "Below you can find a list of ex-developers (aka project fellows). These folks helped make Arch what it is today. Thanks!" context = { |