+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
from django.db.models import Q
from catalogue.models import Book
def order_books(books, new_api):
if new_api:
return books.order_by('sort_key_author', 'sort_key', 'id')
- else:
- return books.order_by('slug')
-
+ return books.order_by('slug')