From bdac7a3257ce16a357473ee9afdde56f9000ac7d Mon Sep 17 00:00:00 2001 From: Ozzie Isaacs Date: Sun, 4 Aug 2024 16:39:05 +0200 Subject: [PATCH] Changed formating of float values. IF value ends not with "0" tailing "0" are printed --- cps/jinjia.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cps/jinjia.py b/cps/jinjia.py index f0b3489d..80c2b7ea 100644 --- a/cps/jinjia.py +++ b/cps/jinjia.py @@ -26,6 +26,7 @@ from markupsafe import escape import datetime import mimetypes from uuid import uuid4 +import re from flask import Blueprint, request, url_for from flask_babel import format_date @@ -112,7 +113,10 @@ def yesno(value, yes, no): @jinjia.app_template_filter('formatfloat') def formatfloat(value, decimals=1): value = 0 if not value else value - return ('{0:.' + str(decimals) + 'f}').format(value).rstrip('0').rstrip('.') + formated_value = ('{0:.' + str(decimals) + 'f}').format(value) + if formated_value.endswith('.' + "0" * decimals): + formated_value = formated_value.rstrip('0').rstrip('.') + return formated_value @jinjia.app_template_filter('formatseriesindex')