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