[Django]-Getting 404 error when loading bootstrap based homepage in Django

7👍

First of all comment out the STATIC_ROOT setting from settings.py

Then add the following line to it –

STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'static'), ]

Finally use the tag {% static "css/bootstrap.min.css" %}. Notice you don not need ‘static’ in the quotes.

Leave a comment