{% extends "base.html" %} {% block content %}

当前概览

快速查看当前装箱记录的核心统计。

{% if boxes %}
{% for box in boxes %}
Box

{{ box.name }}

物品数:{{ box.items|length }}
{% if box.note %}

{{ box.note }}

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

还没有箱子。

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