【发布时间】:2015-11-25 13:17:03
【问题描述】:
我想设置 Django 时区,以便时钟与佛罗里达州的当地时间保持一致,即东部时间 + 夏令时 (DST)。请建议更改 Django 设置时区,使其与该时区一致;目前 django 设置为 EST(东部标准时间)而不是 EDT(东部夏令时间)。当我们进入/离开 DST 时,它应该会自动更改。
# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.
# If running in a Windows environment this must be set to the same as your
# system time zone.
TIME_ZONE = 'America/Chicago'
我正在亚马逊 ubuntu 中运行我的应用程序。佛罗里达当地时间的最佳时区是什么。我正在使用 Django 1.5。
【问题讨论】: