0000976: NarrativeWeb: gramps ID always output regardless of setting
svn: r8296
This commit is contained in:
parent
aa08262352
commit
60c7367f77
@ -1,3 +1,7 @@
|
|||||||
|
2007-03-13 Brian Matherly <brian@gramps-project.org>
|
||||||
|
* src/plugins/NarrativeWeb.py: 0000976: NarrativeWeb: gramps ID always
|
||||||
|
output regardless of setting
|
||||||
|
|
||||||
2007-03-13 Brian Matherly <brian@gramps-project.org>
|
2007-03-13 Brian Matherly <brian@gramps-project.org>
|
||||||
* src/plugins/NarrativeWeb.py: 0000969: NarrativeWeb plugin: include the
|
* src/plugins/NarrativeWeb.py: 0000969: NarrativeWeb plugin: include the
|
||||||
date in the media object pages
|
date in the media object pages
|
||||||
|
@ -1224,7 +1224,11 @@ class SourcePage(BasePage):
|
|||||||
of.write('<h3>%s</h3>\n' % self.page_title.strip())
|
of.write('<h3>%s</h3>\n' % self.page_title.strip())
|
||||||
of.write('<table class="infolist">')
|
of.write('<table class="infolist">')
|
||||||
|
|
||||||
for (label,val) in [(_('GRAMPS ID'),source.gramps_id),
|
grampsid = None
|
||||||
|
if not self.noid:
|
||||||
|
grampsid = source.gramps_id
|
||||||
|
|
||||||
|
for (label,val) in [(_('GRAMPS ID'),grampsid),
|
||||||
(_('Author'),source.author),
|
(_('Author'),source.author),
|
||||||
(_('Publication information'),source.pubinfo),
|
(_('Publication information'),source.pubinfo),
|
||||||
(_('Abbreviation'),source.abbrev)]:
|
(_('Abbreviation'),source.abbrev)]:
|
||||||
|
Loading…
Reference in New Issue
Block a user