{% extends 'pages/generic.twig' %} {% block page_content %} {% for notif in notifications %} {% set sender = get_user( notif.sender ) %}
{% if notif.readed != 1 %}
{{ __( 'New', 'romhackplaza' ) }}
{% endif %}
{{ sender.name }}
{{ notif.type }}

{% if notif.auto == 1 %} {{ __( 'Automatic notification', 'romhackplaza' ) }} - {% endif %} {{ notif.date|date }} ({{ notif.id }})

{{ notif.content }}

{% else %} {{ __( "You don't have any notifications.", 'romhackplaza') }} {% endfor %} {% endblock %}