1264: Add a link in Person page to First name list and in First name list a link to family list
This commit is contained in:
parent
4917628f9e
commit
2cda8b1b24
@ -1982,6 +1982,13 @@ class BasePage:
|
||||
index += 1
|
||||
cols += 1
|
||||
|
||||
if rows == num_rows - 1:
|
||||
prv = Html('<a onclick="history.go(-1);">%s</a>' %
|
||||
_("Previous"))
|
||||
nxt = Html('<a onclick="history.go(+1);">%s</a>' %
|
||||
_("Next"))
|
||||
unordered.extend(Html("li", prv, inline=True))
|
||||
unordered.extend(Html("li", nxt, inline=True))
|
||||
container += unordered
|
||||
navigation += container
|
||||
return navigation
|
||||
|
Loading…
Reference in New Issue
Block a user