* src/plugins/NarrativeWeb.py: 0000950: include the date in the reference sections of the narrative web site

svn: r8289
This commit is contained in:
Brian Matherly 2007-03-11 19:42:48 +00:00
parent 24782c579a
commit 2569c5d9f0
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-03-11 Brian Matherly <brian@gramps-project.org>
* src/plugins/NarrativeWeb.py: 0000950: include the date in the reference
sections of the narrative web site
2007-03-07 Stefan Björk <skalman@acc.umu.se> 2007-03-07 Stefan Björk <skalman@acc.umu.se>
* src/Filters/Rules/_HasMarkerBase.py (HasMarkerBase): fix typo * src/Filters/Rules/_HasMarkerBase.py (HasMarkerBase): fix typo
* src/GrampsWidgets.py: better wording * src/GrampsWidgets.py: better wording

View File

@ -1577,7 +1577,8 @@ class IndividualPage(BasePage):
self.source_link(of,source.handle,title,source.gramps_id,True) self.source_link(of,source.handle,title,source.gramps_id,True)
tmp = [] tmp = []
confidence = Utils.confidence.get(sref.confidence, _('Unknown')) confidence = Utils.confidence.get(sref.confidence, _('Unknown'))
for (label,data) in [(_('Page'),sref.page), for (label,data) in [(_('Date'),_dd.display(sref.date)),
(_('Page'),sref.page),
(_('Confidence'),confidence), (_('Confidence'),confidence),
(_('Text'),sref.text)]: (_('Text'),sref.text)]:
if data: if data: