Django template timezone in :date filter - is abbreviation possible? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T21:30:44Zhttp://stackoverflow.com/feeds/question/1036198http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1036198/django-template-timezone-in-date-filter-is-abbreviation-possible0Django template timezone in :date filter - is abbreviation possible?krys2009-06-24T02:55:39Z2009-08-02T16:50:07Z
<p>If I write <code>{{some_time|date:"h:i A T"}}</code> in a django template, it outputs "12:00 AM Eastern Daylight Time". I would prefer the short timezone format "EDT". Any way you can do this?</p>
http://stackoverflow.com/questions/1036198/django-template-timezone-in-date-filter-is-abbreviation-possible/1219246#12192460Answer by krys for Django template timezone in :date filter - is abbreviation possible?krys2009-08-02T16:50:07Z2009-08-02T16:50:07Z<p>It looks like on my Windows Django dev environment, it returns "Eastern Daylight Time". However, on my Ubuntu 8.04 LTS installation, it returns "EDT" like the documentation shows. Perhaps it is returning the underlying OS's timezone string?</p>
<p>Now that the behavior is known, I can code around it.</p>