FestinHegre/templates/tables/show.html.twig
bayard ddff9b1677 traduction en français
fix du css
Manque boutton supprimer affichage
2024-12-05 15:12:46 +01:00

23 lines
496 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Tables{% endblock %}
{% block body %}
<h1>Tables</h1>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ table.id }}</td>
</tr>
</tbody>
</table>
<a href="{{ path('app_tables_index') }}">Retour à la liste</a>
<a href="{{ path('app_tables_edit', {'id': table.id}) }}">Modifier</a>
{{ include('tables/_delete_form.html.twig') }}
{% endblock %}