Add new bottombar gramplets

svn: r16613
This commit is contained in:
Nick Hall
2011-02-13 00:02:50 +00:00
parent 150d13bca6
commit f5fd46d518
16 changed files with 843 additions and 62 deletions

View File

@@ -289,4 +289,7 @@ class EventView(ListView):
Define the default gramplets for the sidebar and bottombar.
"""
return (("Event Filter Gramplet",),
())
("Event Gallery Gramplet",
"Event Sources Gramplet",
"Event Notes Gramplet",
"Event Attributes Gramplet"))

View File

@@ -344,4 +344,6 @@ class FamilyView(ListView):
Define the default gramplets for the sidebar and bottombar.
"""
return (("Family Filter Gramplet",),
())
("Family Sources Gramplet",
"Family Notes Gramplet",
"Family Attributes Gramplet"))

View File

@@ -493,4 +493,6 @@ class MediaView(ListView):
Define the default gramplets for the sidebar and bottombar.
"""
return (("Media Filter Gramplet",),
())
("Media Sources Gramplet",
"Media Notes Gramplet",
"Media Attributes Gramplet"))

View File

@@ -274,4 +274,4 @@ class RepositoryView(ListView):
Define the default gramplets for the sidebar and bottombar.
"""
return (("Repository Filter Gramplet",),
())
("Repository Notes Gramplet",))

View File

@@ -251,4 +251,5 @@ class SourceView(ListView):
Define the default gramplets for the sidebar and bottombar.
"""
return (("Source Filter Gramplet",),
())
("Source Gallery Gramplet",
"Source Notes Gramplet"))