30 lines
824 B
Twig
30 lines
824 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}StatutCommandes{% endblock %}
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="{{ asset('css/ControllerVues/show.css') }}"> <!-- Ajout du fichier CSS -->
|
|
|
|
{% 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 %}
|