mirror of
https://github.com/django/django.git
synced 2024-11-19 16:04:13 +00:00
cfc19f84de
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14293 bcc190cf-cafb-0310-a4f2-bffc1f526a37
7 lines
180 B
Python
7 lines
180 B
Python
from django.conf import settings
|
|
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^static/(?P<path>.*)$', 'django.contrib.staticfiles.views.serve'),
|
|
)
|