mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-17 15:54:23 +00:00
13 lines
390 B
Twig
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 %} |