Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

django static url

from django.conf import settings
from django.conf.urls.static import static

urlpatterns = [
    # ... the rest of your URLconf goes here ...
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
Source by docs.djangoproject.com #
 
PREVIOUS NEXT
Tagged: #django #static #url
ADD COMMENT
Topic
Name
8+9 =