field=models.DecimalField(blank=True,decimal_places=2,default=None,help_text='This is the price that a member has to pay when he/she did not show up.',max_digits=5,null=True,verbose_name='Costs (in Euro)'),
{% trans "Price"|upper %}: {% if event.price == 0 %}{% trans "Free" %}{% else %}€{{ event.price }}{% endif %}
{% if event.price is not None %}{% trans "Price"|upper %}: {% if event.price == 0 %}{% trans "Free" %}{% else %}€{{ event.price }}{% endif %}{% endif %}