module documentation

Undocumented

Function static Return a URL pattern for serving files in debug mode.
def static(prefix, view=serve, **kwargs): (source)

Return a URL pattern for serving files in debug mode. from django.conf import settings from django.conf.urls.static import static urlpatterns = [ # ... the rest of your URLconf goes here ... ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)