Bug#3822: Added citation_links for person sources in NarrativeWeb.

svn: r15078
This commit is contained in:
Rob G. Healey 2010-04-11 05:05:41 +00:00
parent f1acb5e0d5
commit b0d01d4c2c

View File

@ -3910,6 +3910,9 @@ class IndividualPage(BasePage):
# Names [and their sources]
for name in all_names:
pname = _nd.display_name(name)
if name == primary_name:
pname += self.get_citation_links(self.person.get_source_references() )
pname = _nd.display_name(name)
pname += self.get_citation_links( name.get_source_references() )
@ -3955,7 +3958,6 @@ class IndividualPage(BasePage):
# display the nickname attribute
nick_name = self.person.get_nick_name()
if nick_name and nick_name != first_name:
nick_name += self.get_citation_links(self.person.get_source_references() )
trow = Html("tr") + (
Html("td", _("Nick Name"), class_ = "ColumnAttribute", inline = True),
Html("td", nick_name, class_ = "ColumnValue", inline = True)