I have installed grappelli via pip install (and subsequently updated it, to be sure).
I put it before django.contrib.admin in INSTALLED_APPS:
INSTALLED_APPS = ( ... 'grappelli', 'django.contrib.admin',
My urls.py looks like this:
url(r'^grappelli/', include('grappelli.urls')), url(r'^admin/', include(admin.site.urls)),
Still I am getting an error:
Using the URLconf defined in _myWebsite.urls, Django tried these URL patterns, in this order: ^grappelli/ ^lookup/related/$ [name='grp_related_lookup'] ^grappelli/ ^lookup/m2m/$ [name='grp_m2m_lookup'] ^grappelli/ ^lookup/autocomplete/$ [name='grp_autocomplete_lookup'] ^admin/ ^categories/$ The current URL, grappelli/, didn't match any of these.
What am I doing wrong?