vendor/sylius/sylius/src/Sylius/Bundle/AttributeBundle/Resources/views/Types/select.html.twig line 1

Open in your IDE?
  1. {% if attribute.value is not null %}
  2.     {% set values = attribute.attribute.configuration.choices %}
  3.     {% if attribute.value is iterable %}
  4.         {% for value in attribute.value %}
  5.             {% if locale in values[value]|keys and values[value][locale] is not empty %}
  6.                 {{ values[value][locale] }}{% if loop.last == false %}, {% endif %}
  7.             {% else %}
  8.                 {{ values[value][fallbackLocale] }}{% if loop.last == false %}, {% endif %}
  9.             {% endif %}
  10.         {% endfor %}
  11.     {% else %}
  12.         {% if values[attribute.value][locale] is not empty %}
  13.             {{ values[attribute.value][locale] }}
  14.         {% elseif values[attribute.value][fallbackLocale] is not empty %}
  15.             {{ values[attribute.value][fallbackLocale] }}
  16.         {% endif %}
  17.     {% endif %}
  18. {% endif %}