Added admin.autodiscover() to project template urls.py. It is left commented out intentionally. Thanks tome for the suggestion. Refs #7824.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8009 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
a53a1ba541
commit
effa299342
|
@ -3,6 +3,9 @@ from django.conf.urls.defaults import *
|
|||
# Uncomment this for admin:
|
||||
# from django.contrib import admin
|
||||
|
||||
# Uncomment to load INSTALLED_APPS admin.py module for default AdminSite instance.
|
||||
# admin.autodiscover()
|
||||
|
||||
urlpatterns = patterns('',
|
||||
# Example:
|
||||
# (r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),
|
||||
|
|
Loading…
Reference in New Issue