{% if current_user.is_authenticated %} {% set unread_count = get_unread_notifications_count(current_user.id) %} {% if unread_count > 0 %} {{ unread_count }} {% endif %} {% endif %} {% if current_user.is_authenticated %}
通知中心
{% if unread_count > 0 %} 全部标为已读 {% endif %}
{% set recent_notifications = get_recent_notifications(current_user.id, 5) %} {% if recent_notifications %} {% for notification in recent_notifications %}
{{ notification.title }}

{{ notification.content|striptags|truncate(50) }}

{{ notification.created_at }}
{% endfor %} {% else %}

暂无通知

{% endif %}
查看所有通知
{% endif %}
{% if current_user.is_authenticated %} {% else %} {% endif %}
{% block content %} {% endblock %}