{% extends 'base.html' %} {% block title %}{{ book.title }} - 图书详情{% endblock %} {% block head %} {% endblock %} {% block content %}
{{ book.description|nl2br }}
{% else %}暂无图书简介
{% endif %}| 借阅用户 | 借阅日期 | 应还日期 | 实际归还 | 状态 |
|---|---|---|---|---|
| {{ record.user.username }} | {{ record.borrow_date.strftime('%Y-%m-%d') }} | {{ record.due_date.strftime('%Y-%m-%d') }} | {{ record.return_date.strftime('%Y-%m-%d') if record.return_date else '-' }} | {% if record.status == 1 and record.due_date < now %} 已逾期 {% elif record.status == 1 %} 借阅中 {% else %} 已归还 {% endif %} |
暂无借阅记录
{% endif %}