summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2012-12-12 17:18:41 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2012-12-12 17:18:41 -0500
commitc0d6f0711c4760f08a6beb99818d075d7c993e2e (patch)
treee4a580d7b70181e9d5e36a8c438c63d0d7b63450 /public
parentf286e9560e63a776397494899673b103f92f3198 (diff)
parent6ee65265a051933ee154c42490fdc509b9994202 (diff)
Merge tag 'release_2012-03-12'
Signature stuff and template tweaks Conflicts: templates/public/index.html
Diffstat (limited to 'public')
-rw-r--r--public/views.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/public/views.py b/public/views.py
index 493c45f6..e3d26f92 100644
--- a/public/views.py
+++ b/public/views.py
@@ -44,6 +44,7 @@ def userlist(request, user_type='hackers'):
else:
raise Http404
+ users = users.distinct()
context = USER_LISTS[user_type].copy()
context['users'] = users
return direct_to_template(request, 'public/userlist.html', context)