src/Sylius/Bundle/AdminBundle/Resources/views/PayCustomer/Grid/Field/product_resume.html.twig line 1

Open in your IDE?
  1. {% if data is not null %}
  2.     <p class="centered grid-resume-text">
  3.         {{ data.id }}
  4.     </p>
  5.     {% if data.productTaxons is not null and data.productTaxons|length %}    
  6.         {% for key,o in data.productTaxons %}
  7.             {% if key > 0 %}
  8.                 <br>
  9.             {% endif %}
  10.                 <span class="ui" data-tooltip="{{ o }}">
  11.             <div class="ui tag label white {{  'label-taxon' ~ (data|length ==     1 ? '-1' )}}" >                
  12.               {{ o.taxon }} 
  13.             </div>                    
  14.           </span>  
  15.         {% endfor %}
  16.     {% endif %}    
  17. {% endif %}