[Django]-Django ORM: time zone support

1👍

UTCDateTime seems to satisfy most of the requirements.

👤Art

2👍

You might want to look at the django-timezones app. It was posted in response to ticket #8953 on the django bug tracker. The ticket also talks about a bulbs application that the Onion uses on their site to handle timestamps.

👤Soviut

1👍

I’m not aware of a pre-canned implementation you can use, but this post discusses how to implement a Django date field which maps to multiple database columns.

Leave a comment