{% for example in field.examples %}{{ example.description | trans }}: {{ example.value }} {% endfor %}
{% endif %}
{% endblock %}
{% block select %}
{% if field.value is same as null %}
{% else %}
{% for option in field.options %}
{{ option.selected ? option.label : '' }}
{% endfor %}
{% if field.readonly is not same as true %}
{% endif %}
{% endif %}
{# #}