{% extends "base.html" %} {% block title %}Notifications — SimpleX Manager{% endblock %} {% block head %} {% endblock %} {% block content %}

Notifications

{% if items %} {% endif %}
{% if items %}
{% for n in items %}
{{ n.sender or 'Someone' }} → {{ n.profile_name }}
{{ n.text }}
{% endfor %}
{% else %}
No notifications yet. Incoming messages across all accounts will appear here.
{% endif %} {% endblock %}