Sort button is correctly visible on list pages

Publisher list is working
pull/932/head
Ozzieisaacs 6 years ago
parent 406d1c76c9
commit 9b3b2acb49

@ -4,7 +4,7 @@
<div class="filterheader hidden-xs hidden-sm"> <div class="filterheader hidden-xs hidden-sm">
{% if entries.__len__ %} {% if entries.__len__ %}
{% if not entries[0].sort %} {% if entries[0][0].sort %}
<button id="sort_name" class="btn btn-success"><b>B,A <-> A B</b></button> <button id="sort_name" class="btn btn-success"><b>B,A <-> A B</b></button>
{% endif %} {% endif %}
{% endif %} {% endif %}

@ -447,9 +447,9 @@ def index(page):
title=_(u"Recently Added Books"), page="root") title=_(u"Recently Added Books"), page="root")
@web.route('/<data>/<sort>', defaults={'page': 1, 'book_id': 1}) @web.route('/<data>/<sort>', defaults={'page': 1, 'book_id': "1"})
@web.route('/<data>/<sort>/<int:book_id>', defaults={'page': 1}) @web.route('/<data>/<sort>/<book_id>', defaults={'page': 1})
@web.route('/<data>/<sort>/<int:book_id>/<int:page>') @web.route('/<data>/<sort>/<book_id>/<int:page>')
@login_required_if_no_ano @login_required_if_no_ano
def books_list(data, sort, book_id, page): def books_list(data, sort, book_id, page):
order = [db.Books.timestamp.desc()] order = [db.Books.timestamp.desc()]

Loading…
Cancel
Save