{% extends 'base.html' %} {% block title %}借阅管理 - 图书管理系统{% endblock %} {% block head %} {% endblock %} {% block content %}
| 图书封面 | 书名 | 借阅用户 | 借阅日期 | 应还日期 | 状态 | 操作 | 
|---|---|---|---|---|---|---|
                            {% if borrow.book.cover_url %}
                                 
                            {% endif %}
                         | 
                        {{ borrow.book.title }} | 
                            {{ borrow.user.username }}
                            {% if borrow.user.nickname %}
                                 {{ borrow.user.nickname }} 
                            {% endif %}
                         | 
                        {{ 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 status == 1 %} 没有进行中的借阅记录。 {% elif status == 0 %} 没有已归还的借阅记录。 {% else %} 没有任何借阅记录。 {% endif %}