{% extends "base.html" %} {% block title %}通知{% endblock %} {% block content %}

🔔 通知

{% if notifications %} {% for n in notifications %}
{% if n.ticket_id %} {{ n.title }} {% else %} {{ n.title }} {% endif %}
{% if n.content %}
{{ n.content }}
{% endif %}
{{ n.created_at.strftime('%Y-%m-%d %H:%M') }}
{% endfor %} {% else %}
暂无通知
{% endif %} {% endblock %}