I am new in django development.I want to run django crm which source code i downloaded from code.google.com ""svn checkout http://django-crm.googlecode.com/svn/trunk/sample_project sample_project"". When i ran the sample project in it,it was giving error like "no module named Django_notify" "no module name crumbs" "no module named pagination"etc..i downloaded all these packages and there error are solved. Still "no module named crm" error is coming..please help
ADMINS = ( # ('Your Name', '[email protected]'), )
MANAGERS = ADMINS
DATABASE_ENGINE = 'django.db.backends.sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. DATABASE_NAME = 'django_crm_test.db' # Or path to database file if using sqlite3. DATABASE_USER = '' # Not used with sqlite3. DATABASE_PASSWORD = '' # Not used with sqlite3. DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3.