- Relations entre entités (User, Intervention, etc.)\n- Formulaires adaptés\n- Refacto visuel des vues\n- Nouvelle base.html.twig\n- Dashboards par rôle
31 lines
851 B
Twig
31 lines
851 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Détail de la compétence{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1 class="mb-4">🔍 Détail de la compétence</h1>
|
|
|
|
<table class="table table-bordered">
|
|
<tbody>
|
|
<tr>
|
|
<th>ID</th>
|
|
<td>{{ skill.id }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Nom</th>
|
|
<td>{{ skill.Wording }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Description</th>
|
|
<td>{{ skill.Description }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="mt-3">
|
|
<a href="{{ path('app_skill_index') }}" class="btn btn-secondary">← Retour à la liste</a>
|
|
<a href="{{ path('app_skill_edit', {'id': skill.id}) }}" class="btn btn-warning">✏️ Modifier</a>
|
|
{{ include('skill/_delete_form.html.twig') }}
|
|
</div>
|
|
{% endblock %}
|