Use "common_timezones" instead of "all_timezones"

This commit is contained in:
Christopher C. Wells 2020-02-14 09:30:17 -08:00 committed by Christopher Charbonneau Wells
parent 1514e77f8c
commit 6433b52bec
2 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -41,7 +41,7 @@ class Settings(models.Model):
verbose_name=_('Language')
)
timezone = models.CharField(
choices=tuple(zip(pytz.all_timezones, pytz.all_timezones)),
choices=tuple(zip(pytz.common_timezones, pytz.common_timezones)),
default=timezone.get_default_timezone_name(),
max_length=100,
verbose_name=_('Timezone')