From 18791fd822b3cedab76994590bba1f09f345765f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 3 Jul 2012 07:25:14 +0530 Subject: [PATCH] Content server: Add a navigation panel at the bottom of each page. Fixes #1020225 (improvement in server web pages) --- src/calibre/library/server/mobile.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/calibre/library/server/mobile.py b/src/calibre/library/server/mobile.py index eef131e89f..6119e29911 100644 --- a/src/calibre/library/server/mobile.py +++ b/src/calibre/library/server/mobile.py @@ -97,6 +97,7 @@ def build_index(books, num, search, sort, order, start, total, url_base, CKEYS, search_box = build_search_box(num, search, sort, order, prefix) navigation = build_navigation(start, num, total, prefix+url_base) + navigation2 = build_navigation(start, num, total, prefix+url_base) bookt = TABLE(id='listing') body = BODY( @@ -104,7 +105,8 @@ def build_index(books, num, search, sort, order, start, total, url_base, CKEYS, search_box, navigation, HR(CLASS('spacer')), - bookt + bookt, + navigation2 ) # Book list {{{