/django/contrib/staticfiles/urls.py
https://code.google.com/p/mango-py/ · Python · 16 lines · 9 code · 3 blank · 4 comment · 3 complexity · 4ffba2bbf45c8ea5e312a73c59bdf95e MD5 · raw file
- 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()