Skip to content

Commit

Permalink
Fixed #9724 -- Added missing import to URLconf example, thanks shacker.
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9597 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
gdub committed Dec 8, 2008
1 parent ff3e1a7 commit 235600c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/howto/static-files.txt
Expand Up @@ -6,7 +6,7 @@ How to serve static files

.. module:: django.views.static
:synopsis: Serving of static files during development.

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.

Expand Down Expand Up @@ -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::

from django.conf import settings
...
(r'^site_media/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': settings.STATIC_DOC_ROOT}),

Expand Down

0 comments on commit 235600c

Please sign in to comment.