diff --git a/django/conf/project_template/urls.py b/django/conf/project_template/urls.py
index eb471d5..4951e19 100644
a
|
b
|
|
1 | 1 | from django.conf.urls import patterns, include, url |
2 | 2 | |
| 3 | # Uncomment the next line to serve static files during development: |
| 4 | # from django.contrib.staticfiles.urls import staticfiles_urlpatterns |
| 5 | |
3 | 6 | # Uncomment the next two lines to enable the admin: |
4 | 7 | # from django.contrib import admin |
5 | 8 | # admin.autodiscover() |
… |
… |
urlpatterns = patterns('',
|
15 | 18 | # Uncomment the next line to enable the admin: |
16 | 19 | # url(r'^admin/', include(admin.site.urls)), |
17 | 20 | ) |
| 21 | |
| 22 | # Uncomment the next line to serve static files during development: |
| 23 | # urlpatterns += staticfiles_urlpatterns() |
| 24 | # This will only work if DEBUG is True and STATIC_URL is a relative url. |