* src/ReportBase/_BareReportDialog.py (setup_title): Set name to

empty string if no person is available.
	* src/ReportBase/_ReportDialog.py (get_header): Make meaningful
	title for the header when name is empty.


svn: r7381
This commit is contained in:
Alex Roitman
2006-10-10 00:09:24 +00:00
parent 7c240f8d3c
commit 82f2d2d69d
3 changed files with 14 additions and 4 deletions

View File

@@ -105,9 +105,12 @@ class ReportDialog(BareReportDialog):
"""The header line to put at the top of the contents of the
dialog box. By default this will just be the name of the
report for the selected person. """
return _("%(report_name)s for %(person_name)s") % {
'report_name' : self.report_name,
'person_name' : name}
if name.strip():
return _("%(report_name)s for %(person_name)s") % {
'report_name' : self.report_name,
'person_name' : name}
else:
return _("%(report_name)s") % {'report_name' : self.report_name}
#------------------------------------------------------------------------
#