{% extends 'base.html' %} {% from 'bootstrap5/pagination.html' import render_pagination %} {% block title %}Notifications{% endblock %} {% block content %}
{{ notification_count }} unread notifications
{{ render_icon('gear-fill') }} Settings
{% if notifications %}
    {% for notification in notifications %}
  • {{ notification.message|safe }} {{ notification.created_at }} {% if not notification.is_read %}
    {% endif %}
  • {% endfor %}
{% else %}
No notifications.
{% endif %}
{% endblock %}