templates/shop/stock.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Edit Shop{% endblock %}
  3. {% block body %}
  4.     <div class="d-flex justify-content-between">
  5.         <h3>{{ shop.name }}</h3>
  6.         <a href="{{ path('app_shop_index') }}">{{ "back to list"|trans }}</a>
  7.     </div>
  8.     {# { include('shop/_delete_form.html.twig') }#}
  9.     {%  include 'stock/_list.html.twig' %}
  10. {% endblock %}