{% set active = "" %} {% extends 'base.html.twig' %} {% block title %}Notification index{% endblock %} {% block body %}
| 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 | ||||