管理者 grappelli を構成しようとするとエラーが発生します。私のインデックスがコメントアウトされているときはいつでも、管理ページは正常に機能します。しかし、コメントを外すと、/admin/ で ImproperlyConfigured というエラーが表示されます。その場合、管理者をどのように構成すればよいですか?
from django.conf.urls.defaults import *
from django.views.static import *
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
(r'^admin/', include('apps.grappelli.urls')),
(r'^admin/', include(admin.site.urls)),
(r'^$', include('apps.index.views')),
# Examples:
#(r'^blog/', include('apps.blog.views')),
# Uncomment the admin/doc line below to enable admin documentation:
#(r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
)
ありがとう。