{# templates/app/fournisseurs/index.html.twig #} {% extends 'app/base.html.twig' %} {% block title %}Fournisseurs — GestRestoSco {% endblock %} {% block body %}

Fournisseurs

Nouveau fournisseur
{# ── Onglets Actifs / Inactifs ─────────────────────────────────────── #} {# ── Recherche ─────────────────────────────────────────────────────── #}
{% if q %} {% endif %}
{# ── Tableau ───────────────────────────────────────────────────────── #}
{% if fournisseurs is empty %}

Aucun fournisseur {% if q %}pour « {{ q }} »{% endif %} {{ afficher == 'inactifs' ? 'inactif' : '' }}

{% if not q and afficher == 'actifs' %} Créer le premier fournisseur {% endif %}
{% else %}
{% for f in fournisseurs %} {% endfor %}
Nom Ville Téléphone Email Contact Actions
{{ f.nom }} {% if f.ville %} {{ f.code_postal ? f.code_postal ~ ' ' }}{{ f.ville }} {% else %} — {% endif %} {{ f.telephone ?: '—' }} {% if f.email %} {{ f.email }} {% else %}—{% endif %} {{ f.contact_principal ?: '—' }} {% if afficher == 'inactifs' %}
{% else %}
{% endif %}
{% endif %}
{% endblock %}