diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-02-15 18:50:52 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-02-15 18:50:52 +0100 |
commit | fbfae775970eb0b29c3ac3f79d5bcd7c9acb12fb (patch) | |
tree | b7346b42a7686701fe02aba71136482b037cb800 /example_project | |
parent | f88541bedcffdfaff485ef71287be88a58c745c2 (diff) | |
download | Chimère-fbfae775970eb0b29c3ac3f79d5bcd7c9acb12fb.tar.bz2 Chimère-fbfae775970eb0b29c3ac3f79d5bcd7c9acb12fb.zip |
Work on reorganization (refs #316)
Diffstat (limited to 'example_project')
-rw-r--r-- | example_project/settings.py.example | 2 | ||||
-rw-r--r-- | example_project/urls.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/example_project/settings.py.example b/example_project/settings.py.example index 5f993ab..2715d02 100644 --- a/example_project/settings.py.example +++ b/example_project/settings.py.example @@ -132,7 +132,7 @@ MIDDLEWARE_CLASSES = ( 'django.middleware.doc.XViewMiddleware', ) -ROOT_URLCONF = 'chimere.urls' +ROOT_URLCONF = 'example_project.urls' TEMPLATE_DIRS = [ # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". diff --git a/example_project/urls.py b/example_project/urls.py index 8644a5d..84a7e13 100644 --- a/example_project/urls.py +++ b/example_project/urls.py @@ -28,7 +28,6 @@ urlpatterns = patterns('django.views.static', (r'^%s(?P<path>.*)' % settings.MEDIA_URL[1:], 'serve', {'document_root': settings.MEDIA_ROOT}), ) - urlpatterns += staticfiles_urlpatterns() urlpatterns += patterns('', |