templates/financeurs/edit.html.twig line 1

Open in your IDE?
  1. {% extends 'templateApp.html.twig' %}
  2. {% block title %}Edit Financeurs{% endblock %}
  3. {% block body %}
  4.     <h1>Edit Financeurs</h1>
  5.     {{ include('financeurs/_form.html.twig', {'button_label': 'Update'}) }}
  6.     <a href="{{ path('app_financeurs_index') }}">back to list</a>
  7.     {{ include('financeurs/_delete_form.html.twig') }}
  8. {% endblock %}