I have a problem serving static files in development using Django 1.4
STATIC_ROOT = 'C:/projects/foobar/static/'
STATIC_URL = '/static/'
STATICFILES_DIRS = ()
In my templates I refer to this as static
like this:
<link rel='stylesheet' href='/static/foobar.css'>
Notice that I'm not using any context processor as I'm hard-coding static
Based on the docs I can't see what I'm doing wrong