I am using Grappelli-Dashboard for my Django admin site. I would like to customize the display of the app headers so that the name of the app is NOT displayed. Is that possible? If so, how? I can't figure it out...? Given the code below, I do NOT want the name of both apps displayed (i.e. I don't want the admin to show a header for 'Things' and a header for 'Items)
self.children.append(modules.Group(
_('MyStuff'),
column=3,
collapsible=True,
children = [
modules.AppList(
_('Stuff Details'),
column=1,
collapsible=True,
models=('things.models', ),
),
modules.AppList(
_('Stuff Data'),
column=1,
collapsible=True,
models=('items.models.*', ),
),
]
))