Re: Serving up CSS files in development

2011-11-07 Thread Xavier Ordoquy
Hi, Where did you put your static files ? I noticed that your STATICFILES_DIRS is empty which means you don't have any static files on the project level. What the docs say about this: Your project will probably also have static assets that aren’t tied to a particular app. The STATICFILES_DIRS s

Re: Serving up CSS files in development

2011-11-07 Thread Mike Dewhirst
Forgive top posting - I can't debug your code but I can show you what I do (an excerpt from my settings.py) to debug my own using print statements. I use PROJECT as the project name and PROJECT_ROOT to contain SRC_ROOT which contains settings.py ... MEDIA_ROOT = os.path.join(PROJECT_ROOT, 'ht

Re: Serving up CSS files in development

2011-11-07 Thread M. Herold
By the way, I'm trying to get this URI to work: http://mysite/static/css/style.css On Nov 7, 9:55 pm, "M. Herold" wrote: > This is driving me insane. I've done it what feels like 6 different > ways and for whatever reason, none of them appear to work. The worst > part is it's something so simple

Serving up CSS files in development

2011-11-07 Thread M. Herold
This is driving me insane. I've done it what feels like 6 different ways and for whatever reason, none of them appear to work. The worst part is it's something so simple: I want to link to a css file on my system. Why does this have to be so ridiculous before I get the project into production? Here