templates/emprunts/edit.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Edit Emprunts{% endblock %}
  3. {% block body %}
  4.     <div class="container-fluid">
  5.         <div style='width: 40%'>
  6.             <h1>Edit Emprunts</h1>
  7.             {{ include('emprunts/_form.html.twig', {'button_label': 'Update'}) }}
  8.             <a href="{{ path('emprunts_index') }}">back to list</a>
  9.             {{ include('emprunts/_delete_form.html.twig') }}
  10.         </div>
  11.     </div>
  12. {% endblock %}