From 2d83dad44c2995c83bfe72c3158c969eb0e6de96 Mon Sep 17 00:00:00 2001 From: Joe Banks Date: Sat, 19 Oct 2024 15:47:28 +0100 Subject: [PATCH] Enable commas for float thousands separation --- PyRIGS/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PyRIGS/settings.py b/PyRIGS/settings.py index 20d1ac1f..5116440a 100644 --- a/PyRIGS/settings.py +++ b/PyRIGS/settings.py @@ -224,6 +224,8 @@ USE_L10N = True USE_TZ = True +USE_THOUSAND_SEPARATOR = True + # Need to allow seconds as datetime-local input type spits out a time that has seconds DATETIME_INPUT_FORMATS = ('%Y-%m-%dT%H:%M', '%Y-%m-%dT%H:%M:%S')