Re: Trying to set up hashed versioning in Django for static files

2014-03-10 Thread Vernon Burt
That seemed to do it.. I definitly learned a lot about serving these files. Thank you to both Tom and Camilo, you helped me a lot! Thanks again, Vernon Burt On Monday, March 10, 2014 6:02:30 AM UTC-7, Tom Evans wrote: > > On Mon, Mar 10, 2014 at 1:02 AM, Vernon Burt > > >

Re: Trying to set up hashed versioning in Django for static files

2014-03-09 Thread Vernon Burt
the links dont work, and so none of the css or javascript loads. I'm wondering if I'm misusing the css tags I'm testing with. An example from my base template: {% load static %} Thank you for your time, Vernon Burt On Thursday, March 6, 2014 8:08:07 PM UTC-8, Vernon Burt

Trying to set up hashed versioning in Django for static files

2014-03-06 Thread Vernon Burt
Hello all, I've pretty quikly found out in my DJango adventure that I need to have some kind of versioning for my static css and javascript files. After talking to some web developers I was directed to use Django's CachedStaticFilesStorage app to append an md5 hash to the static files path. No