templates/admin/produit_pour_les_commandes.html.twig line 1

Open in your IDE?
  1. <div class="card">
  2.                 <div class="card-body">
  3.                     <div class="alert alert-info">
  4.                         {{ 'admin.click_on_a_product' | trans  }}
  5.                     </div>
  6.                     <table class="table table-bordered table-striped table-hover" id="tableDesProduits">
  7.                         <thead>
  8.                             <th></th>
  9.                         </thead>
  10.                         <tbody id="listeDesProduits" title="{{ path('admin.liste_produit_lors_commande', {'slug': boutique.slug}) }}">
  11.                             {{ render(controller('App\\Controller\\AdminController::listeProduitLorsCommandeAction', {'slug': boutique.slug})) }}
  12.                         </tbody>
  13.                     </table>
  14.                 </div>
  15.             </div>