NarrativeWeb: Fixed attributes section display on Individual Pages. Moved sources to the end instead of middle.

svn: r15617
This commit is contained in:
Rob G. Healey 2010-07-05 07:21:17 +00:00
parent 7ef7715f1c
commit fc219d57af

View File

@ -409,9 +409,9 @@ class BasePage(object):
for (colclass, data) in [
["Type", str(attr.get_type()) ],
["Value", attr.get_value() ],
["Sources", self.get_citation_links(attr.get_source_references()) ],
["Notes", self.dump_notes(attr.get_note_list()) ] ]
)
["Notes", self.dump_notes(attr.get_note_list()) ],
["Sources", self.get_citation_links(attr.get_source_references()) ] ]
)
# return table row to its caller
return trow
@ -954,8 +954,8 @@ class BasePage(object):
for (label, colclass) in [
(THEAD, "Type"),
(VHEAD, "Value"),
(SHEAD, "Sources"),
(NHEAD, "Notes") ]
(NHEAD, "Notes"),
(SHEAD, "Sources") ]
)
# begin table body
@ -964,7 +964,8 @@ class BasePage(object):
tbody.extend(
self.dump_attribute(attr)
for attr in attrlist)
for attr in attrlist
)
# return section to its caller
return section