From aa71dd095d48c4b17495a18a0cef1a127e6b5da7 Mon Sep 17 00:00:00 2001 From: SNoiraud Date: Sun, 24 Apr 2016 22:27:31 +0200 Subject: [PATCH] 9405: Narrated Web report - Individual sort order not correct on the Surnames tab --- gramps/plugins/webreport/narrativeweb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/plugins/webreport/narrativeweb.py b/gramps/plugins/webreport/narrativeweb.py index be4d877f3..ea5255b55 100644 --- a/gramps/plugins/webreport/narrativeweb.py +++ b/gramps/plugins/webreport/narrativeweb.py @@ -2963,7 +2963,7 @@ class SurnamePage(BasePage): tbody = Html("tbody") table += tbody - for person_handle in ppl_handle_list: + for person_handle in sorted(ppl_handle_list, key=lambda x: sort_on_name_and_grampsid(x, self.dbase_)): person = self.dbase_.get_person_from_handle(person_handle) if person.get_change_time() > ldatec: ldatec = person.get_change_time()