From 845883ac90333eafbd4a0e48aa71a3080f506747 Mon Sep 17 00:00:00 2001 From: Michiel Nauta Date: Sat, 27 Aug 2011 10:09:11 +0000 Subject: [PATCH] 3963: Webreport, Individual's side, bug in event's note svn: r18079 --- src/plugins/webreport/NarrativeWeb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/NarrativeWeb.py index 43a31008b..5c193979d 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -551,7 +551,7 @@ class BasePage(object): for notehandle in notelist: this_note = self.report.database.get_note_from_handle(notehandle) if this_note is not None: - ul.extend(Html("i", str(this_note.type))) + ul.extend(Html("i", str(this_note.type), class_="NoteType")) ul.extend(self.get_note_format(this_note, True)) # return note list to its callers