templates/product_category/partials/editmode/_options.html.twig line 1

Open in your IDE?
  1. {% if editmode %}
  2.     <div class="container">
  3.         <div class="row">
  4.             <div class="col-md-6">
  5.                 {% embed 'app/editmodenotice.html.twig' %}
  6.                     {% block title %}PaginaOptie: Product Categorie{% endblock %}
  7.                     {% block content %}
  8.                         {{ pimcore_relation("productCategory", {
  9.                             'width' : 400,
  10.                             'reload': true,
  11.                             "types": ["object"],
  12.                             "classes": ["ProductCategory"]
  13.                         }) }}
  14.                     {% endblock %}
  15.                     {% block information %}Selecteer een categorie.{% endblock %}
  16.                 {% endembed %}
  17.             </div>
  18.         </div>
  19.     </div>
  20. {% endif %}