Hi Chris,
thanks for your answer. a thousands separator support would be great. Here is my code for the language code problem:
# settings.py
LANGUAGE_CODE = 'de'
# __init.py__.py
class Constants(ConstantsTreatments):
a = cu(5000)
def vars_for_template(player: Player):
return dict(
income_a=Constants.a,)
# template
In dieser Periode beträgt Ihr Gewinn {{ income_a }}.
# Output
Best
Michael