FestinHegre/templates/statut_commandes/show.html.twig

27 lines
677 B
Twig
Raw Normal View History

{% extends 'base.html.twig' %}
{% block title %}StatutCommandes{% endblock %}
{% block body %}
<h1>StatutCommandes</h1>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ statut_commande.id }}</td>
</tr>
<tr>
<th>Libelle</th>
<td>{{ statut_commande.Libelle }}</td>
</tr>
</tbody>
</table>
<a href="{{ path('app_statut_commandes_index') }}">back to list</a>
<a href="{{ path('app_statut_commandes_edit', {'id': statut_commande.id}) }}">edit</a>
{{ include('statut_commandes/_delete_form.html.twig') }}
{% endblock %}