Trying to use django-grappelli for my admin theme, install has been surprisingly challenging. Running into the following in my urls.py:
NameError .. name 'grappelli' is not defined
The error is thrown on the line
(r'^grappelli/', include(grappelli.urls))
Installed grappelli with pip, and grappelli is in my sites-packages directory. Added to my INSTALLED_APPS
, ran syncdb, tried adding grappelli to my pythonpath, but no luck. If I import grappelli in urls.py the error changes to an AttributeError - 'module' has no attribute 'urls'
Suggestions or any kind of help is highly appreciated.