{% extends 'base.html.twig' %}
{% block title %}Competence{% endblock %}
{% block body %}
<h1>Competence</h1>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ competence.id }}</td>
</tr>
<tr>
<th>Libelle</th>
<td>{{ competence.libelle }}</td>
</tr>
<tr>
<th>Code</th>
<td>{{ competence.code }}</td>
</tr>
</tbody>
</table>
<a href="{{ path('app_competence_index') }}">back to list</a>
<a href="{{ path('app_competence_edit', {'id': competence.id}) }}">edit</a>
{{ include('competence/_delete_form.html.twig') }}
{% endblock %}