我正在尝试在 dotcloud 服务上使用 grappelli 设置管理员。我已经全部启动并运行良好,但是当我尝试将自定义仪表板添加到等式时,我收到错误说明:
ImportError at /admin/
No module named dashboard
但是,我已根据需要安装了 django-grappelli,并且它在没有仪表板的情况下工作。仪表板的所有必需品都应该在那里。
INSTALLED_APPS = (
'grappelli.dashboard',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'grappelli',
'django.contrib.admin',
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
)
GRAPPELLI_INDEX_DASHBOARD = 'www.dashboard.CustomIndexDashboard'