1
0
mirror of https://github.com/django/django.git synced 2025-08-12 04:49:11 +00:00

Fixed #9724 -- Added missing import to URLconf example, thanks shacker.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9597 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gary Wilson Jr 2008-12-08 05:35:20 +00:00
parent ff3e1a7d40
commit 235600c3c3

View File

@ -6,7 +6,7 @@ How to serve static files
.. module:: django.views.static .. module:: django.views.static
:synopsis: Serving of static files during development. :synopsis: Serving of static files during development.
Django itself doesn't serve static (media) files, such as images, style sheets, Django itself doesn't serve static (media) files, such as images, style sheets,
or video. It leaves that job to whichever Web server you choose. or video. It leaves that job to whichever Web server you choose.
@ -67,6 +67,8 @@ required. For example, if we have a line in ``settings.py`` that says::
...we could write the above :ref:`URLconf <topics-http-urls>` entry as:: ...we could write the above :ref:`URLconf <topics-http-urls>` entry as::
from django.conf import settings
...
(r'^site_media/(?P<path>.*)$', 'django.views.static.serve', (r'^site_media/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': settings.STATIC_DOC_ROOT}), {'document_root': settings.STATIC_DOC_ROOT}),