diff --git a/CTOAsYouGo/core/templatetags/currency_filters.py b/CTOAsYouGo/core/templatetags/currency_filters.py index e6a3b32..ed9284e 100644 --- a/CTOAsYouGo/core/templatetags/currency_filters.py +++ b/CTOAsYouGo/core/templatetags/currency_filters.py @@ -5,6 +5,6 @@ register = template.Library() @register.filter def cents_to_dollars(value): try: - return "${:.2f}".format(int(value) / 100) + return "€ {:.2f}".format(int(value) / 100) except (ValueError, TypeError): return ''