{% extends 'base.html' %} {% block title %}首页 - 图书管理系统{% endblock %} {% block head %} {% endblock %} {% block content %}

欢迎回来,{{ current_user.username }}!

今天是 ,祝您使用愉快。

馆藏总量

{{ stats.total_books }}

注册用户

{{ stats.total_users }}

当前借阅

{{ stats.active_borrows }}

待还图书

{{ stats.user_borrows if current_user.is_authenticated else 0 }}

最新图书

查看全部
{% if latest_books %} {% for book in latest_books %}
{% if book.cover_url %} {{ book.title }} 封面 {% else %} 无封面 {% endif %}

{{ book.title }}

{{ book.author }}

{{ book.category.name if book.category else '未分类' }} {{ '可借阅' if book.stock > 0 else '已借完' }}
{{ '借阅' if book.stock > 0 else '详情' }}
{% endfor %} {% else %} {% for i in range(4) %}
Book Cover

示例图书标题

作者名

计算机 可借阅
{% endfor %} {% endif %}

通知公告

查看全部
{% if announcements %} {% for announcement in announcements %}

{{ announcement.title }}

{{ announcement.content|striptags|truncate(100) }}

{{ announcement.created_at.strftime('%Y-%m-%d') }}
{% endfor %} {% else %}

暂无公告

目前没有任何通知公告

{{ now.strftime('%Y-%m-%d') }}
{% endif %} {% if current_user.is_authenticated and user_notifications %}

您有{{ user_notifications|length }}条未读通知

{% for notification in user_notifications %} {% if loop.index <= 2 %} {{ notification.title }}{% if not loop.last and loop.index < 2 %}、{% endif %} {% endif %} {% endfor %} {% if user_notifications|length > 2 %}等{% endif %}

{{ now.strftime('%Y-%m-%d') }} 查看详情
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}