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

借阅管理

{% if status is not none %}{% endif %}
{% if search or user_id or book_id %} {% endif %}
{% if pagination.items %} {% for borrow in pagination.items %} {% endfor %}
图书封面 书名 借阅用户 借阅日期 应还日期 状态 操作
{% if borrow.book.cover_url %} {{ borrow.book.title }} {% else %} {{ borrow.book.title }} {% endif %} {{ borrow.book.title }}
{{ borrow.book.author }}
{{ borrow.borrow_date.strftime('%Y-%m-%d') }} {{ borrow.due_date.strftime('%Y-%m-%d') }} {% if borrow.status == 1 and borrow.due_date < now %} 已逾期 {% endif %} {% if borrow.status == 1 %} 借阅中 {% if borrow.renew_count > 0 %} 已续借{{ borrow.renew_count }}次 {% endif %} {% else %} 已归还
{{ borrow.return_date.strftime('%Y-%m-%d') }}
{% endif %}
{% if borrow.status == 1 %} {% if borrow.renew_count < 2 and borrow.due_date >= now %} {% endif %} {% if borrow.due_date < now %} {% endif %} {% endif %}
{% if pagination.pages > 1 %} {% endif %}
{% else %}

{% if status == 1 %} 没有进行中的借阅记录。 {% elif status == 0 %} 没有已归还的借阅记录。 {% else %} 没有任何借阅记录。 {% endif %}

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}