-
+# -*- coding: utf-8 -*-
+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
from django.contrib.auth.decorators import permission_required
from django.utils.datastructures import SortedDict
from django.shortcuts import render_to_response, get_object_or_404
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))