diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2010-11-15 21:58:45 -0800 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2010-11-15 21:58:45 -0800 |
commit | 90915ae0b7875a7cbb0e00846579b805a7909f30 (patch) | |
tree | 84802154d89a00c8eb3a01a1358adf32b3ca0410 /public | |
parent | 7e1e0dffaf0584270e652815a0b0ed3f03e32add (diff) |
changes from 15 nov
Diffstat (limited to 'public')
-rw-r--r-- | public/views.py | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/public/views.py b/public/views.py index 7d10e74f..1c385fed 100644 --- a/public/views.py +++ b/public/views.py @@ -19,15 +19,12 @@ def index(request): def userlist(request, type='Developers'): users = User.objects.order_by('username').select_related('userprofile') - if type == 'Developers': - users = users.filter(is_active=True, groups__name="Developers") - msg = "This is a list of the current Arch Linux Developers. They maintain the [core] and [extra] package repositories in addition to doing any other developer duties." - elif type == 'Trusted Users': - 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." + if type == 'Hackers': + users = users.filter(is_active=True, groups__name="Hackers") + msg = "This is a list of the current Parabola GNU/Linux hackers. They maintain the [core] and [extra] package repositories in addition to doing any other developer duties." elif type == 'Fellows': users = users.filter(is_active=False) - msg = "Below you can find a list of ex-developers (aka project fellows). These folks helped make Arch what it is today. Thanks!" + msg = "Below you can find a list of ex-hackers (aka project fellows). These folks helped make Parabola what it is today. Thanks!" context = { 'user_type': type, |