diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-12-12 17:18:41 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-12-12 17:18:41 -0500 |
commit | c0d6f0711c4760f08a6beb99818d075d7c993e2e (patch) | |
tree | e4a580d7b70181e9d5e36a8c438c63d0d7b63450 /public/views.py | |
parent | f286e9560e63a776397494899673b103f92f3198 (diff) | |
parent | 6ee65265a051933ee154c42490fdc509b9994202 (diff) |
Merge tag 'release_2012-03-12'
Signature stuff and template tweaks
Conflicts:
templates/public/index.html
Diffstat (limited to 'public/views.py')
-rw-r--r-- | public/views.py | 1 |
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) |