From d443e86fbcbf71537401ff8634d5b2f7feb03925 Mon Sep 17 00:00:00 2001 From: "Rob G. Healey" Date: Sun, 2 Aug 2009 22:29:54 +0000 Subject: [PATCH] Fixed layout and alignment of display_ind_families() in NarrativeWeb svn: r12862 --- src/plugins/webreport/NarrativeWeb.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/NarrativeWeb.py index e11932a59..f972a88a6 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -3828,10 +3828,15 @@ class IndividualPage(BasePage): if formatted_event is not None: trow = Html('tr') + ( Html('td', ' ', class_='ColumnType', inline=True), - Html('td', formatted_event, class_='ColumnValue') + Html('td', ' ', class_='ColumnAttribute', inline=True), ) table += trow + tcell = Html('td', class_='ColumnValue') + trow += tcell + + tcell += formatted_event + # return table to its caller return table