templates/front/catalog/model/view/caracteristics.html.twig line 1

Open in your IDE?
  1. {% if product.caracteristics %}
  2. <div class="tab-content rte section caracteristics" style="padding: 30px 0;">
  3. <div class="title-ctn">
  4. <div class="title">{% trans %}Caractéristiques{% endtrans %}</div>
  5. <hr>
  6. </div>
  7. <table>
  8. <tbody>
  9. {% for p in products %}
  10. {% for attribute in p.caracteristics %}
  11. {% if attribute.attribute.code == 'origin_country' %}
  12. {% if attribute.value == 'France' %}
  13. <tr class="attribute-{{ p.id }}" data-attr="{{ attribute.attribute.code }}" data-aid="{{ attribute.attribute.id }}" data-paid="{{ attribute.id }}">
  14. <td>{{ attribute.attribute.title }}</td>
  15. <td>{{ attribute.value }}</td>
  16. </tr>
  17. {% elseif attribute.value in ['Allemagne','Belgique','Espagne','Italie','Pologne','Roumanie','Grande Bretagne','Union Européenne'] %}
  18. <tr class="attribute-{{ p.id }}" data-attr="{{ attribute.attribute.code }}" data-aid="{{ attribute.attribute.id }}" data-paid="{{ attribute.id }}">
  19. <td>{{ attribute.attribute.title }}</td>
  20. <td>Europe</td>
  21. </tr>
  22. {% endif %}
  23. {% elseif attribute.attribute.code == 'product_brand' and p.manufacturer %}
  24. <tr class="attribute-{{ p.id }}" data-attr="{{ attribute.attribute.code }}" data-aid="{{ attribute.attribute.id }}" data-paid="{{ attribute.id }}">
  25. <td>{{ attribute.attribute.title }}</td>
  26. <td><a href="{{ path('manufacturer', {id:p.manufacturer.id, url:p.manufacturer.url}) }}">{{ p.manufacturer.name }}</a></td>
  27. </tr>
  28. {% else %}
  29. <tr class="attribute-{{ p.id }}" data-attr="{{ attribute.attribute.code }}" data-aid="{{ attribute.attribute.id }}" data-paid="{{ attribute.id }}">
  30. <td>{{ attribute.attribute.title }}</td>
  31. <td>
  32. {% if attribute %}
  33. {{ attribute.displayedValue }}
  34. {% elseif attribute.value == 1 %}
  35. {{ 'Oui' | trans }}
  36. {% elseif attribute.value == 0 %}
  37. {{ 'Non' | trans }}
  38. {% endif %}
  39. </td>
  40. </tr>
  41. {% endif %}
  42. {% endfor %}
  43. {% endfor %}
  44. </tbody>
  45. </table>
  46. </div>
  47. {% endif %}