McDoPlus/templates/avis/show.html.twig
clemcle81500 6eb297c0f1 corrections fautes
corrections fautes
2023-12-05 13:40:54 +01:00

34 lines
825 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Avis{% endblock %}
{% block body %}
<div class="center">
<h1>Avis</h1>
<article>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ avi.id }}</td>
</tr>
<tr>
<th>Note</th>
<td>{{ avi.note }}</td>
</tr>
<tr>
<th>Commentaire</th>
<td>{{ avi.com }}</td>
</tr>
<tr>
<th>Id_ticket</th>
<td>{{ avi.idTicket }}</td>
</tr>
</tbody>
</table>
<a href="{{ path('app_avis_index') }}">back to list</a>
</article>
</div>
{% endblock %}