{% set active = "" %} {% extends 'base.html.twig' %} {% block title %}Notification index{% endblock %} {% block body %}

Listes des notifications

{% for notification in notifications %} {% else %} {% endfor %}
Id Date Content Seen actions
{{ notification.id }} {{ notification.date ? notification.date|date('Y-m-d H:i:s') : '' }} {{ notification.content }} {{ notification.seen ? 'Yes' : 'No' }} {# show edit #} {% if not notification.seen %} Vu {% endif %}
no records found
{# Create new #}
{% endblock %}