templates/periode_type/show.html.twig line 1

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