1
내 Django 관리 사이트에 Grappelli-Dashboard를 사용하고 있습니다. 앱 헤더의 표시를 사용자 정의하여 앱 이름이 표시되지 않도록하고 싶습니다. 그게 가능하니? 그렇다면 어떻게? 나는 그것을 이해할 수 없다 ...? 아래의 코드 감안할 때 , 나는 표시 모두 응용 프로그램의 이름을 원하지 않는 당신은 좋겠Grappelli-Dashboard 모듈에서 응용 프로그램 이름을 표시하지 않을 수 있습니까? 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.*',),
),
]
))