From e69f272a632e46a0bc4e6f9345d77d0731f47ff9 Mon Sep 17 00:00:00 2001 From: Kuroshini Date: Wed, 16 Oct 2019 14:11:07 +0300 Subject: [PATCH] Fix time format for frontend --- apps/location/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/location/models.py b/apps/location/models.py index 6df1b7cb..9f059e34 100644 --- a/apps/location/models.py +++ b/apps/location/models.py @@ -34,7 +34,7 @@ class Country(TranslatedFieldsMixin, SVGImageMixin, ProjectBaseMixin): @property def time_format(self): if self.code.lower() not in self.TWELVE_HOURS_FORMAT_COUNTRIES: - return 'hh:mm' + return 'HH:mm' return 'hh:mmA' @property