Re: Serving static files: Tried 3 ways with no luck

2012-12-27 Thread Jani Tiainen
27.12.2012 5:03, warsam...@gmail.com kirjoitti: I am having an unbelievable time getting my new django application to servie static files, i have read the django documentation but it seems as there isn't one consistent way to serve static files while in development using the Django server. In

Re: Serving static files: Tried 3 ways with no luck

2012-12-27 Thread Dylan Tuominen
Yes make sure your STATICFILES_DIRS setting is pointing to the exact location you want to put them in, and then make sure all of the needed files are indeed being collected by manage.py collectstatic. after that, assuming your static_url is set to /static/, you should have no problems

Re: Serving static files: Tried 3 ways with no luck

2012-12-26 Thread Mike Dewhirst
On 27/12/2012 2:03pm, warsam...@gmail.com wrote: I am having an unbelievable time getting my new django application to servie static files, i have read the django documentation but it seems as there isn't one consistent way to serve static files while in development using the Django server. In

Serving static files: Tried 3 ways with no luck

2012-12-26 Thread warsameb0
I am having an unbelievable time getting my new django application to servie static files, i have read the django documentation but it seems as there isn't one consistent way to serve static files while in development using the Django server. In order are my settings.py file, my urls.py file