1567: beautify Relation Ship Graph, remove - if no date of birth or death
svn: r20841
This commit is contained in:
parent
8a8bf7c72e
commit
57dccb292b
@ -400,7 +400,14 @@ class RelGraphReport(Report):
|
|||||||
label += " (%s)" % p_id
|
label += " (%s)" % p_id
|
||||||
if self.includedates:
|
if self.includedates:
|
||||||
birth, death = self.get_date_strings(person)
|
birth, death = self.get_date_strings(person)
|
||||||
label = label + '%s(%s - %s)' % (lineDelimiter, birth, death)
|
if birth or death:
|
||||||
|
label += ' %s(' % lineDelimiter
|
||||||
|
if birth:
|
||||||
|
label += '%s' % birth
|
||||||
|
label += ' - '
|
||||||
|
if death:
|
||||||
|
label += '%s' % death
|
||||||
|
label += ')'
|
||||||
|
|
||||||
# see if we have a table that needs to be terminated
|
# see if we have a table that needs to be terminated
|
||||||
if self.bUseHtmlOutput:
|
if self.bUseHtmlOutput:
|
||||||
|
Loading…
Reference in New Issue
Block a user