{% extends "base.html" %} {% block title %}{{ t('notifications') }} | {{ app_name }}{% endblock %} {% block content %}

{{ t('notifications') }}

{{ t('notifications_subtitle') }}

{% for notification in notifications.items %}
{{ notification.title }}

{{ notification.message }}

{{ notification.created_at.strftime('%Y-%m-%d %H:%M') }}
{% if notification.link %} {{ t('open') }} {% endif %} {% if not notification.is_read %}
{% endif %}
{% else %}

{{ t('no_notifications') }}

{% endfor %}
{% set pagination = notifications %} {% include "partials/pagination.html" %}
{% endblock %}