1
0
mirror of https://github.com/django/django.git synced 2025-01-26 18:19:18 +00:00

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'),
)