diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2011-01-03 15:41:44 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2011-01-03 15:41:44 -0300 |
commit | 2b31a1cdd40763be0d8dc042c7638e81e47769fd (patch) | |
tree | 3a358db08f74a7e8c5e65e43206d48045ad53859 /public/views.py | |
parent | 2ad424ddbd771cb193f8f8dee102348be8d7a04f (diff) |
Parabola specific changes. Preparing for launch!
Diffstat (limited to 'public/views.py')
-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 1c385fed..43cc5882 100644 --- a/public/views.py +++ b/public/views.py @@ -21,7 +21,7 @@ def userlist(request, type='Developers'): users = User.objects.order_by('username').select_related('userprofile') 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." + msg = "This is a list of the current Parabola GNU/Linux hackers. They maintain the *-libre packages 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-hackers (aka project fellows). These folks helped make Parabola what it is today. Thanks!" |