I'm trying to set up admin with grappelli on dotcloud services. I've got that all up and running fine however when I try and add a custom dashboard to the equation, I get errors stating:
ImportError at /admin/
No module named dashboard
However I have installed the django-grappelli as required and it is working without dashboard. All the requisites for dashboard should be there.
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'