[Fixed]-Bootstrap is not loaded in django admin

1👍

You need to enable static file serving in your urls.py per Django documentation on managing static files:

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

urlpatterns = [
...
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
👤Selcuk

Leave a comment