templates/competence/show.html.twig line 1

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