Merge branch 'develop' into feature

This commit is contained in:
jeremystretch
2022-12-08 09:31:22 -05:00
11 changed files with 47 additions and 13 deletions

View File

@@ -140,7 +140,8 @@ def percentage(x, y):
"""
if x is None or y is None:
return None
return round(x / y * 100)
return round(x / y * 100, 1)
@register.filter()