{% extends "base.html" %} {% block content %} {% if boxes %}
{% for box in boxes %}
Box

{{ box.name }}

物品数:{{ box.items|length }} 房间:{{ box.room or '-' }} 状态:{{ box.status or '-' }}
{% if box.note %}

{{ box.note }}

{% endif %}
{% endfor %}
{% else %}

还没有箱子。

创建第一个箱子
{% endif %} {% endblock %}