proper sorting of pictures in gallery view
authorMarcin Koziej <marcin@lolownia.org>
Wed, 18 Dec 2013 11:11:16 +0000 (12:11 +0100)
committerMarcin Koziej <marcin@lolownia.org>
Wed, 18 Dec 2013 11:11:16 +0000 (12:11 +0100)
apps/picture/views.py

index 8acce82..4d5d854 100644 (file)
@@ -29,8 +29,8 @@ def picture_list_thumb(request, filter=None, get_filter=None, template_name='pic
         book_list = book_list.filter(filter)
     if get_filter:
         book_list = book_list.filter(get_filter())
+    book_list = book_list.order_by('sort_key_author')
     book_list = list(book_list)
-    book_list.sort(lambda a,b: cmp(a.extra_info['authors'][0], b.extra_info['authors'][0]))
     return render_to_response(template_name, locals(),
                               context_instance=RequestContext(request))