{% extends 'base.html.twig' %}

{% block title %}Plats index{% endblock %}
{% block stylesheets %}
    <link rel="stylesheet" href="{{ asset('css/ControllerVues/list.css') }}"> <!-- Ajout du fichier CSS -->

{% endblock %}
{% block body %}
    <h1>Plats index</h1>

    <table class="table">
        <thead>
            <tr>
                <th>Id</th>
                <th>Nom</th>
                <th>Description</th>
                <th>Prix</th>
                <th>Categorie</th>
                <th>Statut</th>
                <th>Nb_de_commande</th>
                <th>actions</th>
            </tr>
        </thead>
        <tbody>
        {% for plat in plats %}
            <tr>
                <td>{{ plat.id }}</td>
                <td>{{ plat.Nom }}</td>
                <td>{{ plat.Description }}</td>
                <td>{{ plat.Prix }}</td>
                <td>{{ plat.Categorie }}</td>
                <td>{{ plat.Statut ? 'Yes' : 'No' }}</td>
                <td>{{ plat.NbDeCommande }}</td>
                <td>
                    <form method="post" action="{{ path('app_plats_delete', {'id': plat.id}) }}" onsubmit="return confirm('Es-tu sur de vouloir le supprimer ?');">
                        <input type="hidden" name="_token" value="{{ csrf_token('delete' ~ plat.id) }}">
                        {{ include('plats/_delete_form.html.twig') }}
                    </form>
                    <a href="{{ path('app_plats_edit', {'id': plat.id}) }}">Modifier</a>
                </td>
            </tr>
        {% else %}
            <tr>
                <td colspan="8">Aucun enregistrement trouvé</td>
            </tr>
        {% endfor %}
        </tbody>
    </table>

    <a href="{{ path('app_plats_new') }}">Créer un nouveau plat</a>
{% endblock %}