CSS fixes and partial fix to 3837
svn: r15185
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user