2010-10-20 09:33:24 +08:00
|
|
|
from django.conf import settings
|
2011-02-14 09:42:26 +08:00
|
|
|
from django.conf.urls.static import static
|
2010-10-20 09:33:24 +08:00
|
|
|
|
|
|
|
urlpatterns = []
|
|
|
|
|
|
|
|
def staticfiles_urlpatterns(prefix=None):
|
|
|
|
"""
|
|
|
|
Helper function to return a URL pattern for serving static files.
|
|
|
|
"""
|
|
|
|
if prefix is None:
|
2010-11-17 23:36:26 +08:00
|
|
|
prefix = settings.STATIC_URL
|
2011-02-14 09:42:26 +08:00
|
|
|
return static(prefix, view='django.contrib.staticfiles.views.serve')
|
|
|
|
|
|
|
|
# Only append if urlpatterns are empty
|
|
|
|
if settings.DEBUG and not urlpatterns:
|
|
|
|
urlpatterns += staticfiles_urlpatterns()
|