1
我爲我的Django管理站點使用Grappelli-Dashboard。我想定製應用程序標題的顯示,以便不顯示應用程序的名稱。那可能嗎?如果是這樣,怎麼樣?我無法弄清楚......? 考慮下面的代碼,我不希望顯示兩個應用程序的名稱(即我不想給管理員顯示「事物」的標題和「項目頭)是否有可能在Grappelli-Dashboard module.AppList中顯示應用程序名稱?
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.*',),
),
]
))