templates/etat_ope/show.html.twig line 21

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}EtatOpe{% endblock %}
  3. {% block body %}
  4.     <h1>EtatOpe</h1>
  5.     <table class="table">
  6.         <tbody>
  7.             <tr>
  8.                 <th>Id</th>
  9.                 <td>{{ etat_ope.id }}</td>
  10.             </tr>
  11.             <tr>
  12.                 <th>Libelle</th>
  13.                 <td>{{ etat_ope.libelle }}</td>
  14.             </tr>
  15.         </tbody>
  16.     </table>
  17.     <a href="{{ path('app_etat_ope_index') }}">back to list</a>
  18.     <a href="{{ path('app_etat_ope_edit', {'id': etat_ope.id}) }}">edit</a>
  19.     {{ include('etat_ope/_delete_form.html.twig') }}
  20. {% endblock %}