mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-01-24 08:14:13 +03:00
Remove admin.autodiscover() call, it's called automatically in 1.7+
This commit is contained in:
parent
894b72646a
commit
e07e436b46
|
@ -2,19 +2,16 @@
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.conf.urls import patterns, include, url
|
from django.conf.urls import include, patterns, url
|
||||||
from django.conf.urls.static import static
|
from django.conf.urls.static import static
|
||||||
from django.views.generic import TemplateView
|
|
||||||
|
|
||||||
# Comment the next two lines to disable the admin:
|
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
admin.autodiscover()
|
from django.views.generic import TemplateView
|
||||||
|
|
||||||
urlpatterns = patterns('', # noqa
|
urlpatterns = patterns('', # noqa
|
||||||
url(r'^$', TemplateView.as_view(template_name='pages/home.html'), name="home"),
|
url(r'^$', TemplateView.as_view(template_name='pages/home.html'), name="home"),
|
||||||
url(r'^about/$', TemplateView.as_view(template_name='pages/about.html'), name="about"),
|
url(r'^about/$', TemplateView.as_view(template_name='pages/about.html'), name="about"),
|
||||||
|
|
||||||
# Django Admin (Comment the next line to disable the admin)
|
# Django Admin
|
||||||
url(r'^admin/', include(admin.site.urls)),
|
url(r'^admin/', include(admin.site.urls)),
|
||||||
|
|
||||||
# User management
|
# User management
|
||||||
|
|
Loading…
Reference in New Issue
Block a user