Fixed layout and alignment of display_ind_families() in NarrativeWeb

svn: r12862
This commit is contained in:
Rob G. Healey 2009-08-02 22:29:54 +00:00
parent b5902eb82f
commit d443e86fbc

View File

@ -3828,10 +3828,15 @@ class IndividualPage(BasePage):
if formatted_event is not None: if formatted_event is not None:
trow = Html('tr') + ( trow = Html('tr') + (
Html('td', ' ', class_='ColumnType', inline=True), Html('td', ' ', class_='ColumnType', inline=True),
Html('td', formatted_event, class_='ColumnValue') Html('td', ' ', class_='ColumnAttribute', inline=True),
) )
table += trow table += trow
tcell = Html('td', class_='ColumnValue')
trow += tcell
tcell += formatted_event
# return table to its caller # return table to its caller
return table return table