Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

django static files / templates

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 #files #templates
ADD COMMENT
Topic
Name
9+6 =