//settings.py
STATICFILES_DIRS = [
BASE_DIR, "static",
]
//urls.py
from django.conf import settings
from django.conf.urls.static import static
+ static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
//settings.py
STATICFILES_DIRS = [
BASE_DIR, "static",
]
//urls.py
from django.conf import settings
from django.conf.urls.static import static
+ static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)