[Answered ]-Django admin datetime `now` button picking correct local time, but wrong server time

2👍

Can you store all the data in UTC and convert client side to the correct time for that timezone for display, and to UTC for storage?

0👍

The way I propose it might work is by using the server time, as served by the headers:

Date: fri, 19 apr 2013 16:16:00 gmt

However, that gets less correct the longer the page is open, so it’s not a very good answer…

Leave a comment