McDoPlus/templates/resto_admin/show.html.twig
2023-11-27 15:52:51 +01:00

38 lines
982 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Resto{% endblock %}
{% block body %}
<div class="center">
<h1>Resto</h1>
<article>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ resto.id }}</td>
</tr>
<tr>
<th>Pay</th>
<td>{{ resto.pay }}</td>
</tr>
<tr>
<th>Ville</th>
<td>{{ resto.ville }}</td>
</tr>
<tr>
<th>Address</th>
<td>{{ resto.address }}</td>
</tr>
</tbody>
</table>
<p><a href="{{ path('app_resto_admin_edit', {'id': resto.id}) }}">edit</a></p>
{{ include('resto_admin/_delete_form.html.twig') }}
<a href="{{ path('app_resto_admin_index') }}">back to list</a>
</article>
</div>
{% endblock %}