templates/product/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 {% endblock %}
  7.                     {% block content %}
  8.                         {{ pimcore_relation("product", {
  9.                             'width':400,
  10.                             'reload':true,
  11.                             "types": ["object"],
  12.                             "classes": ["Product"]
  13.                         }) }}
  14.                     {% endblock %}
  15.                     {% block information %} Selecteer een product. {% endblock %}
  16.                 {% endembed %}
  17.             </div>
  18.         </div>
  19.     </div>
  20. {% endif %}