mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 21:12:20 +02:00
Content server: Add a navigation panel at the bottom of each page. Fixes #1020225 (improvement in server web pages)
This commit is contained in:
parent
06d13aa0af
commit
18791fd822
1 changed files with 3 additions and 1 deletions
|
|
@ -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 {{{
|
||||
|
|
|
|||
Loading…
Reference in a new issue