CSS fixes and partial fix to 3837

svn: r15185
This commit is contained in:
Doug Blank
2010-04-17 14:49:36 +00:00
parent 487d099611
commit 87dd9aff24
10 changed files with 18 additions and 31 deletions

View File

@ -450,13 +450,16 @@ class BasePage(object):
db = self.report.database
# begin unordered list
ul = Html("ul")
ul.extend(
self.get_note_format(
db.get_note_from_handle(notehandle))
for notehandle in notelist)
ul = Html("p")
for notehandle in notelist:
ul.extend(
Html("p", str(db.get_note_from_handle(notehandle).type))
)
ul.extend(
self.get_note_format(db.get_note_from_handle(notehandle))
)
# return unordered note list to its callers
# return note list to its callers
return ul
def display_event_row(self, evt, evt_ref, subdirs, hyp):
@ -1611,8 +1614,9 @@ class BasePage(object):
if tmp:
list1 = Html("li", inline = True) + (
Html("a", ";   ".join(tmp),
name = "sref%d%s" % (cindex, key))
Html("a", "<br/> ".join(tmp),
style="text-decoration: none;",
name="sref%d%s" % (cindex, key))
)
ordered1 += list1