Fix issues caused by thousands separator (#602)

* Disable thousands separation in locale settings that caused issues updating rigs

* Update invoice dashboard to use "g" suffixed floatformats for thousands separation
This commit is contained in:
Joe Banks
2024-10-27 15:09:04 +00:00
committed by GitHub
parent c2ef469d5d
commit 6c32db3998
2 changed files with 7 additions and 6 deletions

View File

@@ -224,7 +224,7 @@ USE_L10N = True
USE_TZ = True
USE_THOUSAND_SEPARATOR = True
USE_THOUSAND_SEPARATOR = False
# 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')