I\'m running Django\'s development server (runserver) on my local machine (Mac OS X) and cannot get the CSS files to load.
runserver
Here are the relevant entries
Add the following code to your settings.py:
settings.py
STATICFILES_DIRS = [ os.path.join(BASE_DIR, "static"), ]
After that, create the static folder at the root directory of your project.
To load the static files on templates use:
{% load static %}