mirror of
				https://github.com/janeczku/calibre-web
				synced 2025-10-31 07:13:02 +00:00 
			
		
		
		
	Sort button is correctly visible on list pages
Publisher list is working
This commit is contained in:
		| @@ -4,7 +4,7 @@ | ||||
|  | ||||
|     <div class="filterheader hidden-xs hidden-sm"> | ||||
|       {% 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> | ||||
|        {% endif %} | ||||
|       {% endif %} | ||||
|   | ||||
| @@ -447,9 +447,9 @@ def index(page): | ||||
|                                  title=_(u"Recently Added Books"), page="root") | ||||
|  | ||||
|  | ||||
| @web.route('/<data>/<sort>', defaults={'page': 1, 'book_id': 1}) | ||||
| @web.route('/<data>/<sort>/<int:book_id>', defaults={'page': 1}) | ||||
| @web.route('/<data>/<sort>/<int:book_id>/<int:page>') | ||||
| @web.route('/<data>/<sort>', defaults={'page': 1, 'book_id': "1"}) | ||||
| @web.route('/<data>/<sort>/<book_id>', defaults={'page': 1}) | ||||
| @web.route('/<data>/<sort>/<book_id>/<int:page>') | ||||
| @login_required_if_no_ano | ||||
| def books_list(data, sort, book_id, page): | ||||
|     order = [db.Books.timestamp.desc()] | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Ozzieisaacs
					Ozzieisaacs