I've just created a really basic django site, its got the tutorial polls and thats about it.
I've added in the metro UI and added it to the static files directory under the appropriate app.
I've also used the collectstatic command and it picks up the files.
But both with Apache and using runserver i'm only able to find CSS files, the js files are 404.
[15/May/2014 11:44:35] "GET / HTTP/1.1" 200 2941
[15/May/2014 11:44:35] "GET /static/MetroUI/css/metro-bootstrap.css HTTP/1.1" 304 0
[15/May/2014 11:44:35] "GET /static/MetroUI/js/metro/metro.min.js HTTP/1.1" 404 1688
[15/May/2014 11:44:35] "GET /static/MetroUI/js/jquery/jquery.min.js HTTP/1.1" 404 1694
[15/May/2014 11:44:35] "GET /static/MetroUI/js/jquery/jquery.widget.min.js HTTP/1.1" 404 1715
The file permissions are the same and the files are definitely in the right path.
Any idea why they aren't found, but the CSS files are?
Thanks,
J