From ce95b3d9b8bf4639d4b8be96069783f48f527267 Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Mon, 25 Sep 2023 22:41:32 +0100 Subject: [PATCH] Add event reference citations to the complete individual report Fixes #13035. --- gramps/plugins/textreport/indivcomplete.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gramps/plugins/textreport/indivcomplete.py b/gramps/plugins/textreport/indivcomplete.py index e67e8ae4725..57676585d6f 100644 --- a/gramps/plugins/textreport/indivcomplete.py +++ b/gramps/plugins/textreport/indivcomplete.py @@ -227,7 +227,8 @@ def write_fact(self, event_ref, event, show_type=True): ignore = _("%(str1)s, %(str2)s") % {"str1": "", "str2": ""} column_2 = self.combine("%(str1)s, %(str2)s", "%s", description, place_name) - endnotes = self._cite_endnote(event, prior=place_endnote) + event_ref_endnotes = self._cite_endnote(event_ref, prior=place_endnote) + endnotes = self._cite_endnote(event, prior=event_ref_endnotes) self.doc.start_row() self.write_cell(column_1)