hegresphere/templates/degree/show.html.twig
bourgoino 9e49da7775 tkt
2024-12-05 16:56:04 +01:00

40 lines
1.5 KiB
Twig

{% extends 'base.html.twig' %}
{% block title %}Détail du Diplôme{% endblock %}
{% block body %}
<div class="container mx-auto p-6">
<h1 class="text-4xl font-semibold text-gray-800 mb-6">Détail du Diplôme</h1>
<div class="bg-white shadow-md rounded-lg p-6">
<table class="min-w-full">
<tbody>
<tr class="border-b">
<th class="px-6 py-4 text-lg font-medium text-gray-700">ID</th>
<td class="px-6 py-4 text-lg text-gray-900">{{ degree.id }}</td>
</tr>
<tr class="border-b">
<th class="px-6 py-4 text-lg font-medium text-gray-700">Label</th>
<td class="px-6 py-4 text-lg text-gray-900">{{ degree.label }}</td>
</tr>
</tbody>
</table>
</div>
<div class="mt-6 flex justify-between">
<!-- Retour à la liste -->
<a href="{{ path('app_degree_index') }}" class="text-teal-500 hover:text-teal-700 text-lg">
<i class="fas fa-arrow-left"></i> Retour à la liste des diplômes
</a>
<!-- Modifier le diplôme -->
<a href="{{ path('app_degree_edit', {'id': degree.id}) }}" class="text-yellow-500 hover:text-yellow-700 text-lg">
<i class="fas fa-edit"></i> Modifier ce diplôme
</a>
</div>
<!-- Option de suppression du diplôme -->
{{ include('degree/_delete_form.html.twig') }}
</div>
{% endblock %}