{# templates/app/fournisseurs/index.html.twig #} {% extends 'app/base.html.twig' %} {% block title %}Fournisseurs — GestRestoSco {% endblock %} {% block body %}
Aucun fournisseur {% if q %}pour « {{ q }} »{% endif %} {{ afficher == 'inactifs' ? 'inactif' : '' }}
{% if not q and afficher == 'actifs' %} Créer le premier fournisseur {% endif %}| Nom | Ville | Téléphone | 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 %} |