{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}{{ page_title }}{% endblock %} {% block content %} {# Header avec titre et actions #}

Mes Notifications

Gérez vos notifications et restez informé des événements importants

{% if stats.unread > 0 %}
{% endif %}
{# Statistiques #}
Total des notifications
{{ stats.total }}
Non lues
{{ stats.unread }}
{# Filtres #}
{# Filtre Type #}
{# Filtre Catégorie #}
{# Filtre Statut #}
{# Boutons d'action #}
{# Liste des notifications #}
{% if notifications is empty %} {# État vide #}

Aucune notification

Vous n'avez aucune notification pour le moment.

{% else %} {# Desktop: Liste complète #} {# Mobile: Version compacte #}
{% for notification in notifications %} {% include 'components/_notification_item.html.twig' with { notification: notification, compact: true, show_actions: true, show_user: false } %} {% endfor %}
{# Pagination #} {% if notifications.pageCount > 1 %}
{# Mobile Pagination #}
{% if notifications.currentPageNumber > 1 %} Précédent {% endif %} {% if notifications.currentPageNumber < notifications.pageCount %} Suivant {% endif %}
{# Desktop Pagination #}
{% endif %} {% endif %}
{# Script pour gérer les actions AJAX #} {% endblock %}