templates/point_eaux/edit.html.twig line 1

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