Commit 211c3b16 authored by OzzieIsaacs's avatar OzzieIsaacs

Fix fror #388

parent f045c16c
...@@ -1048,7 +1048,7 @@ def index(page): ...@@ -1048,7 +1048,7 @@ def index(page):
@app.route('/books/newest/page/<int:page>') @app.route('/books/newest/page/<int:page>')
@login_required_if_no_ano @login_required_if_no_ano
def newest_books(page): def newest_books(page):
if current_cuser.show_sorted(): if current_user.show_sorted():
entries, random, pagination = fill_indexpage(page, db.Books, True, db.Books.pubdate.desc()) entries, random, pagination = fill_indexpage(page, db.Books, True, db.Books.pubdate.desc())
return render_title_template('index.html', random=random, entries=entries, pagination=pagination, return render_title_template('index.html', random=random, entries=entries, pagination=pagination,
title=_(u"Newest Books")) title=_(u"Newest Books"))
...@@ -1059,7 +1059,7 @@ def newest_books(page): ...@@ -1059,7 +1059,7 @@ def newest_books(page):
@app.route('/books/oldest/page/<int:page>') @app.route('/books/oldest/page/<int:page>')
@login_required_if_no_ano @login_required_if_no_ano
def oldest_books(page): def oldest_books(page):
if current_cuser.show_sorted(): if current_user.show_sorted():
entries, random, pagination = fill_indexpage(page, db.Books, True, db.Books.pubdate) entries, random, pagination = fill_indexpage(page, db.Books, True, db.Books.pubdate)
return render_title_template('index.html', random=random, entries=entries, pagination=pagination, return render_title_template('index.html', random=random, entries=entries, pagination=pagination,
title=_(u"Oldest Books")) title=_(u"Oldest Books"))
...@@ -1071,7 +1071,7 @@ def oldest_books(page): ...@@ -1071,7 +1071,7 @@ def oldest_books(page):
@app.route('/books/a-z/page/<int:page>') @app.route('/books/a-z/page/<int:page>')
@login_required_if_no_ano @login_required_if_no_ano
def titles_ascending(page): def titles_ascending(page):
if current_cuser.show_sorted(): if current_user.show_sorted():
entries, random, pagination = fill_indexpage(page, db.Books, True, db.Books.sort) entries, random, pagination = fill_indexpage(page, db.Books, True, db.Books.sort)
return render_title_template('index.html', random=random, entries=entries, pagination=pagination, return render_title_template('index.html', random=random, entries=entries, pagination=pagination,
title=_(u"Books (A-Z)")) title=_(u"Books (A-Z)"))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment