{% load arctic_tags i18n %}
{# This template makes it easier to overwrite all the labels for the different form types #}
{{ field.label|safe }}
{% if field.field.widget|typename != 'CheckboxInput' and field.field.widget|typename != 'RadioSelect' %}
{% if not field.field.required and not field.field.disabled %}
({% trans 'optional' %})
{% endif %}
{% endif %}
{% if field.help_text %}
{% endif %}