{% extends 'base.html.twig' %} {% block title %}Notifications{% endblock %} {% block meta_description %} Liste de vos notifications {% endblock %} {% block body %}
bearded dwarf forging a sword above "SquadForge" title SQUADFORGE
{# Show menu Burger (mobile) #}
{# HeaderSouligne + Bandeau avertissement muted #} {% if app.user and app.user.muted and time_diff_future(app.user.endDateStatus) != false %}
Vous êtes actuellement réduit au silence ( fin dans {{ time_diff_future(app.user.endDateStatus) }} )
{% else %}
{% endif %}

Notifications

{# Ajax Boutons clean/"vues" ajax #} {% if notifs|length > 0 %}
{% if theresNotSeen %} {# // Ajax bouton: passer toutes les notifs en "vue" #} {% endif %} {# // Ajax bouton: suppr toutes les notifs #}
{% else %}

Aucune notifications

{% endif %} {# Liste des notifs #}
{# Le link delete dans le link notif mess-up le link global #} {% set index = 0 %} {% for notif in notifs %}

{# State clicked de la notif #} {% if not notif.clicked %} {% endif %} {{ notif.text|raw }}

{{ time_diff(notif.dateCreation) }}
{% set index = index + 1 %}
{% endfor %}
{% endblock %}