Updates to Family view and tabs

svn: r13616
This commit is contained in:
Doug Blank
2009-11-18 02:58:29 +00:00
parent 3e6a161694
commit 3f19c3d1b3
3 changed files with 155 additions and 31 deletions

View File

@ -233,43 +233,78 @@ def person_reference_table(djperson, user):
def family_children_table(djfamily, user):
table = Table()
table.columns(_("Column"))
table.row("test")
table.columns(
_("#"),
_("ID"),
_("Name"),
_("Gender"),
_("Paternal"),
_("Maternal"),
_("Birth Date"),
)
#for djfamily:
# table.row("test")
return table.get_html()
def family_event_table(djfamily, user):
table = Table()
table.columns(_("Column"))
table.columns(
_("Description"),
_("Type"),
_("ID"),
_("Date"),
_("Place"),
_("Role"),
)
table.row("test")
return table.get_html()
def family_source_table(djfamily, user):
table = Table()
table.columns(_("Column"))
table.columns(
_("ID"),
_("Type"),
_("Author"),
_("Page"),
)
table.row("test")
return table.get_html()
def family_attribute_table(djfamily, user):
table = Table()
table.columns(_("Column"))
table.columns(
_("Type"),
_("Value"),
)
table.row("test")
return table.get_html()
def family_note_table(djfamily, user):
table = Table()
table.columns(_("Column"))
table.columns(
_("Type"),
_("Preview"),
)
table.row("test")
return table.get_html()
def family_gallery_table(djfamily, user):
table = Table()
table.columns(_("Column"))
table.columns(
_("Column"),
)
table.row("test")
return table.get_html()
def family_lds_table(djfamily, user):
table = Table()
table.columns(_("Column"))
table.columns(
_("Type"),
_("Date"),
_("Status"),
_("Temple"),
_("Place"),
)
table.row("test")
return table.get_html()