{% extends 'manager/manager_base.html.twig' %} {% block title %}Régions{% endblock %} {% block content %}
| Nom | District de Rattachement | {# Nouvelle colonne ajoutée #}Date de création | Dernière mise à jour | Actions |
|---|---|---|---|---|
| {{ region.nom }} | {# District de Rattachement #}{% if region.district %} {{ region.district.nom }} {% elseif region.idChefLieuRegion is defined and region.idChefLieuRegion is not empty %} {# Affichage du Chef Lieu Region ID si l'objet District n'est pas directement disponible #} {{ region.idChefLieuRegion }} {% else %} N/A {% endif %} | {# Date de création #}{{ region.createdAt ? region.createdAt|date('d/m/Y H:i') : 'N/A' }} | {# Date de mise à jour #}{{ region.updatedAt ? region.updatedAt|date('d/m/Y H:i') : 'N/A' }} | {# Actions (Menu déroulant unifié) #}
|