mirror of
https://github.com/Hopiu/django.git
synced 2026-04-22 07:44:49 +00:00
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'),
|
||
|
|
)
|