MEMOS
检测中...
{% set total_unread = notifications.unread.total if notifications else 0 %} {% if total_unread > 0 %} {{ total_unread }} {% endif %}
提炼 {{ notifications.unread.extract_complete if notifications else 0 }} 冲突 {{ notifications.unread.conflict_detected if notifications else 0 }} 过期 {{ notifications.unread.expiry_alert if notifications else 0 }}
{% if notifications and notifications.recent %} {% for n in notifications.recent %}
{{ '🔔' if n.type == 'extract_complete' else '⚠' if n.type == 'conflict_detected' else '📋' }} {{ n.title }} {{ n._time_ago }}
{{ n.message[:80] }}{% if n.message|length > 80 %}...{% endif %}
{% endfor %}
{% else %}
暂无通知
{% endif %} 查看全部通知 →