2015-02-18 13:13:00 +01:00

13 lines
390 B
Twig

{% if selected|length > 0 %}
{%- for choice in choices -%}
{% if choice['slug'] in selected %}
{%- if choice['slug'] is not same as('_other') -%}
{{ choice['name']|localize_translatable_string|csv_cell }}
{%- else -%}
{{ choice['name']|csv_cell }}
{%- endif -%}
{% endif %}
{%- endfor -%}
{% else %}
{{ 'None'|trans }}
{% endif %}