I\'m running django 1.3, python 2.7 on windows XP
I\'m trying to setup a css in a static folder for my django app.
The template looks like:
I created a folder:
C:\root\workspace\mysite\src\mysite\common
And in my settings, I have:
STATIC_ROOT = 'C:/root/workspace/mysite/src/mysite/static/' STATIC_URL = '/static/' STATICFILES_DIRS = ( "C:/root/workspace/mysite/src/mysite/common/static", )
This seems to work.