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

{{ box.name }}

物品数:{{ box.items|length }}

{% if box.room %}

房间:{{ box.room }}

{% endif %} {% if box.status %}

状态:{{ box.status }}

{% endif %} {% if box.note %}

{{ box.note }}

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

还没有箱子。

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