{% extends 'manager/manager_base.html.twig' %} {% block title %}Sous-Préfectures{% endblock %} {% block content %}
| Nom | {# NOUVELLE COLONNE AJOUTÉE (SIMPLE) #}Département | Date de création | Dernière mise à jour | Actions |
|---|---|---|---|---|
| {{ sous_prefecture.nom }} | {# CONTENU DE LA NOUVELLE COLONNE #}{% if sous_prefecture.departement %} {{ sous_prefecture.departement.nom }} {% else %} N/A {% endif %} | {# Date de création #}{{ sous_prefecture.createdAt ? sous_prefecture.createdAt|date('d/m/Y H:i') : 'N/A' }} | {# Date de mise à jour #}{{ sous_prefecture.updatedAt ? sous_prefecture.updatedAt|date('d/m/Y H:i') : 'N/A' }} | {# Actions (Menu déroulant - LOGIQUE INCHANGÉE) #} {# Actions (Menu déroulant unifié) #}
|