mirror of
https://github.com/django/django.git
synced 2025-10-15 09:49:21 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15530 bcc190cf-cafb-0310-a4f2-bffc1f526a37
17 lines
480 B
Python
17 lines
480 B
Python
from django.conf import settings
|
|
from django.conf.urls.static import static
|
|
|
|
urlpatterns = []
|
|
|
|
def staticfiles_urlpatterns(prefix=None):
|
|
"""
|
|
Helper function to return a URL pattern for serving static files.
|
|
"""
|
|
if prefix is None:
|
|
prefix = settings.STATIC_URL
|
|
return static(prefix, view='django.contrib.staticfiles.views.serve')
|
|
|
|
# Only append if urlpatterns are empty
|
|
if settings.DEBUG and not urlpatterns:
|
|
urlpatterns += staticfiles_urlpatterns()
|