Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在我的项目中安装 django-cms 它不能正常工作,因为我有一个安装 grappelli,我需要知道如何让它工作 grappelli 和 django-cms 并出现在管理员中?
提前致谢。
您需要将其添加到 Grapelli 仪表板中。在dashboard.py 文件中,您必须引用管理页面的模型。
有些像这样:
modules.ModelList( ('Django-CMS'), collapsible=True, css_classes=("grp-closed",), models=( 'cms.models.pagemodel.Page', ), ),
问候。