I have looked everywhere but have not found a problem similar to this.
I am trying to make a simple project in Django but there is a problem with static files. I have put two folders in the STATIC_DIRS tuple and I use the collectstatic command to collect them to /static/ folder. The problem is that there is no 404 error for the css file I included but it does not show up in chrome's developer's tools or affect the webpage in any way.
EDIT: I am on a dev server and I include the css files in a template. I don't know which parts of the project are suspect since the css file does not produce an error. I know Django is being found in the static dir successfully because if I change the name of the css file I get a 404. Here is my settings.py file and where I include it in the template.
https://github.com/Ballaw/Twithub/blob/master/Twithub/settings.py https://github.com/Ballaw/Twithub/blob/master/Twithub/assets/templates/base.html
You can find the files the project here. https://github.com/Ballaw/Twithub
Any help would be greatly appreciated!
SOLVED: When including css files in link tags, make sure rel field is set to stylesheet and not stylesheet/css. Major props to Bootvis for discovering this.
link-tag. I'm quite surprised Chrome (and Firefox) are so strict on what is in there and I guess other people will find the question and answer useful.