From a5fe08e84cdf20ccbaed898b09e5e1c13b9d482b Mon Sep 17 00:00:00 2001 From: pthiben Date: Sat, 18 Apr 2020 23:32:15 -0400 Subject: [PATCH] Fix button color that now matches HEAD on master Update name for HTML Series that changed with HEAD --- cps/templates/grid.html | 12 ++++++------ cps/templates/list.html | 4 ++-- cps/web.py | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cps/templates/grid.html b/cps/templates/grid.html index 730b9e94..8fb084fd 100644 --- a/cps/templates/grid.html +++ b/cps/templates/grid.html @@ -5,21 +5,21 @@ {% if entries[0] %} diff --git a/cps/templates/list.html b/cps/templates/list.html index 2a25085d..5617142c 100644 --- a/cps/templates/list.html +++ b/cps/templates/list.html @@ -19,8 +19,8 @@ {% endfor %} - {% if title == "Series list" %} - + {% if title == "Series" %} + {% endif %}
diff --git a/cps/web.py b/cps/web.py index 5a223387..63c38af6 100644 --- a/cps/web.py +++ b/cps/web.py @@ -812,7 +812,7 @@ def series_list(): .group_by(func.upper(func.substr(db.Series.sort, 1, 1))).all() return render_title_template('grid.html', entries=entries, folder='web.books_list', charlist=charlist, - title=_(u"Series list"), page="serieslist", data="series", bodyClass="grid-view") + title=_(u"Series"), page="serieslist", data="series", bodyClass="grid-view") else: abort(404)