{% extends "dashboard/base_dash.html" %} {% load dashboard_extras static %} {% block title %}Notifications — GiniFollow{% endblock %} {% block dashboard_inner %}

Notifications : forfait, messages, nouveaux contenus blog et ressources, rappels de rendez-vous et alertes liées à votre activité. Le bouton Ouvrir affiche le détail ici, sans quitter la page. La notification est marquée comme lue dès l’ouverture.

Centre de notifications

{% if notifications_list %}
{% csrf_token %}
{% endif %}
{% for n in notifications_list %}
{{ n.titre }}

{{ n.message }}

{{ n.date|date:"d/m/Y H:i" }}
{% if not n.lu %} Nouveau {% endif %}
{% if not n.lu %}
{% csrf_token %}
{% endif %}
{% empty %}
Aucune notification.
{% endfor %}
{% endblock %}