Django with system timezone setting vs user's individual timezones - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T08:07:14Z http://stackoverflow.com/feeds/question/1061911 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1061911/django-with-system-timezone-setting-vs-users-individual-timezones 2 Django with system timezone setting vs user's individual timezones Nick Sonneveld 2009-06-30T05:45:08Z 2009-06-30T17:24:47Z <p>How well does Django handle the case of different timezones for each user? Ideally I would like to run the server in the UTC timezone (eg, in settings.py set TIME_ZONE="UTC") so all datetimes were stored in the database as UTC. Stuff like <a href="http://stackoverflow.com/questions/689831/changing-timezone-on-an-existing-django-project">this</a> scares me which is why I prefer UTC everywhere.</p> <p>But how hard will it be to store a timezone for each user and still use the standard django datetime formatting and modelform wrappers. Do I anticipate having to write date handling code everywhere to convert dates into the user's timezone and back to UTC again?</p> <p>I am still going through the django tutorial but I know how much of a pain it can be to deal with user timezones in some other frameworks that assume system timezone everywhere so I thought I'd ask now.</p> <p>My research at the moment consisted of searching the django documentation and only finding <a href="http://docs.djangoproject.com/en/dev/ref/settings/#time-zone" rel="nofollow">one reference</a> to timezones.</p> <p><hr /></p> <p>Additional: </p> <ul> <li><a href="http://www.theonion.com/" rel="nofollow">The Onion</a> seem to have written some code called <a href="https://launchpad.net/bulbs" rel="nofollow">Bulbs</a> which does some date/timezone handling as well. </li> <li>There are a <a href="http://code.djangoproject.com/ticket/2626" rel="nofollow">few bugs submitted</a> concerning Django and timezone handling.</li> <li>Babel has <a href="http://svn.edgewall.org/repos/babel/contrib/django/" rel="nofollow">some contrib code for django</a> that seems to deal with timezone formatting in locales.</li> </ul> http://stackoverflow.com/questions/1061911/django-with-system-timezone-setting-vs-users-individual-timezones/1061921#1061921 0 Answer by ayaz for Django with system timezone setting vs user's individual timezones ayaz 2009-06-30T05:50:47Z 2009-06-30T05:50:47Z <p>You could start by taking a look at the <a href="http://code.google.com/p/django-timezones/" rel="nofollow">django-timezones</a> application. It makes available a number of timezone-based model fields (and their corresponding form fields, and some decorators), which you could use to at least <em>store</em> different timezone values per user (if nothing else). </p> http://stackoverflow.com/questions/1061911/django-with-system-timezone-setting-vs-users-individual-timezones/1061967#1061967 0 Answer by Lennart Regebro for Django with system timezone setting vs user's individual timezones Lennart Regebro 2009-06-30T06:02:52Z 2009-06-30T06:02:52Z <p>Not a Django expert here, but afaik Django has no magic, and I can't even imagine any such magic that would work. </p> <p>For example: you don't always want to save times in UTC. In a calendar application, for example, you want to save the datetime in the local time that the calendar event happens. Which can be different both from the servers and the users time zone. So having code that automatically converts every selected datetime to the servers time zone would be a Very Bad Thing.</p> <p>So yes, you will have to handle this yourself. I'd recommend to store the time zone for everything, and of course run the server in UTC, and let all the datetimes generated by the application use UTC, and then convert them to the users time zone when displaying. It's not difficult, just annoying to remember. when it comes to datetimes that are inputted by the user, it's dependant on the application if you should convert to UTC or not. I would as a general recommendation not convert to UTC but save in the users time zone, with the information of which time zone that is.</p> <p>Yes, time zones is a big problem. I've written a couple of blog posts on the annoying issue, like here: <a href="http://regebro.wordpress.com/2007/12/18/python-and-time-zones-fighting-the-beast/" rel="nofollow">http://regebro.wordpress.com/2007/12/18/python-and-time-zones-fighting-the-beast/</a></p> <p>In the end you will have to take care of time zone issues yourself, because there is no real correct answer to most of the issues. </p> http://stackoverflow.com/questions/1061911/django-with-system-timezone-setting-vs-users-individual-timezones/1064928#1064928 1 Answer by Brian Neal for Django with system timezone setting vs user's individual timezones Brian Neal 2009-06-30T17:24:47Z 2009-06-30T17:24:47Z <p>I'm going to be working on this problem myself for my application. My first approach to this problem would be to go with django core developer Malcom Tredinnick's advice in <a href="http://groups.google.com/group/django-users/msg/ee174701c960ff2d" rel="nofollow">this django-user's post</a>. You'll want to store the user's timezone setting in their user profile, probably.</p> <p>I would also highly encourage you to look into the <a href="http://pytz.sourceforge.net/" rel="nofollow">pytz module</a>, which makes working with timezones less painful. For the front end, I created a "timezone picker" based on the common timezones in pytz. I have one select box for the area, and another for the location (e.g. US/Central is rendered with two select boxes). It makes picking timezones slightly more convenient than wading through a list of 400+ choices.</p>