bornhack-website/shop/templatetags/shop_tags.py

11 lines
140 B
Python

from django import template
register = template.Library()
@register.filter
def currency(value):
return "{0:.2f} DKK".format(value)