mirror of
https://github.com/Hopiu/django.git
synced 2026-03-21 16:30:25 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14293 bcc190cf-cafb-0310-a4f2-bffc1f526a37
6 lines
180 B
Python
6 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'),
|
|
)
|