{% extends 'base.html.twig' %} {% block title %}{{ 'notifications.page_title'|trans({}, 'Notifications') }}{% endblock %} {% block body %}

{{ 'notifications.page_title'|trans({}, 'Notifications') }}

{% if count > 0 %} {{ 'notifications.total'|trans({'%count%': count}, 'Notifications') }} {% endif %}
{% if notifications|length == 0 %}

{{ 'notifications.empty'|trans({}, 'Notifications') }}

{% else %}
{% for notification in notifications %}

{{ notification.message }}

{{ notification.datetime|date('Y-m-d H:i') }}
{% if notification.clicked == 0 %}
{% endif %}
{% endfor %}
{# Pagination #} {% if totalPages > 1 %}
{% if currentPage > 1 %} {{ 'notifications.prev'|trans({}, 'Notifications') }} {% endif %} {% for i in 1..totalPages %} {% if i == currentPage %} {{ i }} {% elseif (i - currentPage)|abs <= 2 or i == 1 or i == totalPages %} {{ i }} {% elseif (i - currentPage)|abs == 3 %} ... {% endif %} {% endfor %} {% if currentPage < totalPages %} {{ 'notifications.next'|trans({}, 'Notifications') }} {% endif %}
{% endif %} {% endif %}
{% endblock %}