{% extends 'base.html' %} {% block title %}通知详情 - 图书管理系统{% endblock %} {% block head %} {% endblock %} {% block content %}
{{ notification.type }} {% if notification.status == 0 %} 未读 {% else %} 已读 {% endif %}

{{ notification.title }}

{{ notification.created_at.strftime('%Y-%m-%d %H:%M') }}
{{ notification.content|safe }}
{% endblock %} {% block scripts %} {% endblock %}