I am unable to get django-grappelli working. Below is what I did -
- Installed using
pip install django-grappelli
. - Added '
grappelli
' in INSTALLED_APPS before the 'django.contrib.admin
' . - In urls.py, added URL definition
url(r'^grappelli/', include('grappelli.urls'))
, before admin url, ie.url(r'^admin/', include(admin.site.urls))
- Executed
syncdb
andcollectstatic
commands.
Now when I run command runserver, and browse localhost:8000/admin/, surprisingly I am getting the default admin.
I checked the request traffic in Google Chrome Network tab (in Developers Tool), and I don't see any request for url starting with Grappelli.
I don't know what I am doing wrong. I am using Django 1.4.1-final in virtualenv on Windows 7 machine.