私は機知に富んでいます。Django admin をセットアップしようとしていますが、苦労しています。私は Django book に従い、何度かチェックしましたが、無効な構文 (urls.py、23 行目) を取得しました。
from django.conf.urls.defaults import *
from mysite.views import hello, current_datetime, hours_ahead
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
(r'^hello/$', hello),
(r'^time/$', current_datetime),
(r'^time/plus/(\d{1,2})/$', hours_ahead),
(r'^admin/', include(admin.site.urls),
)
洞察をいただければ幸いです-ありがとう!