Add author sort

This commit is contained in:
Michael Knepher 2020-08-29 18:53:00 -07:00
parent 7e0d9fbace
commit 057f70ea9c
1 changed files with 4 additions and 0 deletions

View File

@ -644,6 +644,10 @@ def books_list(data, sort, book_id, page):
order = [db.Books.timestamp.desc()]
if sort == 'old':
order = [db.Books.timestamp]
if sort == 'authaz':
order = [db.Books.author_sort.asc()]
if sort == 'authza':
order = [db.Books.author_sort.desc()]
if data == "rated":
if current_user.check_visibility(constants.SIDEBAR_BEST_RATED):