From 2cda8b1b2433a02a83bf69c45c1efeddb5887cb9 Mon Sep 17 00:00:00 2001 From: SNoiraud Date: Fri, 2 Sep 2016 11:57:47 +0200 Subject: [PATCH] 1264: Add a link in Person page to First name list and in First name list a link to family list --- gramps/plugins/webreport/narrativeweb.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gramps/plugins/webreport/narrativeweb.py b/gramps/plugins/webreport/narrativeweb.py index 84918d426..39150c670 100644 --- a/gramps/plugins/webreport/narrativeweb.py +++ b/gramps/plugins/webreport/narrativeweb.py @@ -1982,6 +1982,13 @@ class BasePage: index += 1 cols += 1 + if rows == num_rows - 1: + prv = Html('%s' % + _("Previous")) + nxt = Html('%s' % + _("Next")) + unordered.extend(Html("li", prv, inline=True)) + unordered.extend(Html("li", nxt, inline=True)) container += unordered navigation += container return navigation