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 this "django.core.context_processors.static", context processor in your settings.py
"django.core.context_processors.static",
TEMPLATE_CONTEXT_PROCESSORS = ( "django.core.context_processors.static",
)