More installation streamlining: Added default urlconfs, for both main and admin, to project_template. Changed ROOT_URLCONF in default main and admin settings to point at their respective default urlconfs
git-svn-id: http://code.djangoproject.com/svn/django/trunk@124 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
820e12dac6
commit
a22f823e00
|
@ -5,7 +5,7 @@ from main import *
|
|||
TEMPLATE_DIRS = (
|
||||
# Put strings here, like "/home/html/django_templates".
|
||||
)
|
||||
ROOT_URLCONF = 'django.conf.urls.admin'
|
||||
ROOT_URLCONF = '{{ project_name }}.settings.urls.admin'
|
||||
MIDDLEWARE_CLASSES = (
|
||||
'django.middleware.admin.AdminUserRequired',
|
||||
'django.middleware.common.CommonMiddleware',
|
||||
|
|
|
@ -26,6 +26,8 @@ MEDIA_ROOT = ''
|
|||
# Example: "http://media.lawrence.com"
|
||||
MEDIA_URL = ''
|
||||
|
||||
ROOT_URLCONF = '{{ project_name }}.settings.urls.main'
|
||||
|
||||
TEMPLATE_DIRS = (
|
||||
# Put strings here, like "/home/html/django_templates".
|
||||
)
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
from django.conf.urls.defaults import *
|
||||
|
||||
urlpatterns = patterns('',
|
||||
(r'^admin/', include('django.conf.urls.admin')),
|
||||
)
|
|
@ -0,0 +1,6 @@
|
|||
from django.conf.urls.defaults import *
|
||||
|
||||
urlpatterns = patterns('',
|
||||
# Example:
|
||||
# (r'^{{ project_name }}/', include('{{ project_name }}.apps.foo.urls.foo')),
|
||||
)
|
Loading…
Reference in New Issue