Ticket #15310: static-files.txt.patch
File static-files.txt.patch, 504 bytes (added by , 14 years ago) |
---|
-
docs/howto/static-files.txt
267 267 268 268 if settings.DEBUG: 269 269 urlpatterns += patterns('', 270 url(r'^media/(?P<path>.*)$', 'django.views.static ', {270 url(r'^media/(?P<path>.*)$', 'django.views.static.serve', { 271 271 'document_root': settings.MEDIA_ROOT, 272 272 }), 273 273 )