{% extends 'base.html.twig' %}
{% block title %}PeriodeType{% endblock %}
{% block body %}
<h1>PeriodeType</h1>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ periode_type.id }}</td>
</tr>
<tr>
<th>Libelle</th>
<td>{{ periode_type.libelle }}</td>
</tr>
<tr>
<th>AvoirCours</th>
<td>{{ periode_type.avoirCours ? 'Yes' : 'No' }}</td>
</tr>
</tbody>
</table>
<a href="{{ path('app_periode_type_index') }}">back to list</a>
<a href="{{ path('app_periode_type_edit', {'id': periode_type.id}) }}">edit</a>
{{ include('periode_type/_delete_form.html.twig') }}
{% endblock %}