{% extends "base.html" %} {% block title %}Уведомления — InfoUser Monitor{% endblock %} {% block content %}

Уведомления

← Назад
{% if notifications %} {% for n in notifications %}
{{ n.title }}

{{ n.message }}

{{ n.sent_at.strftime('%Y-%m-%d %H:%M') if n.sent_at else '-' }}

{% if not n.is_read %} {% endif %}
{% endfor %} {% else %}
Уведомлений пока нет.
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}