{% extends "base.html" %} {% block content %}
{% if box.image_blob %} {{ box.name }} {% endif %}

房间: {{ box.room or '-' }}

状态: {{ box.status or '-' }}

备注: {{ box.note or '-' }}

编辑箱子

内部物品

重点浏览区域,点击任意一行可进入物品详情。

{% if box.items %}
{% for item in box.items %}
{% if item.image_blob %} {{ item.name }} {% endif %}
{{ "容器型 Item" if item.is_container else "Item" }}

{{ item.name }}

数量:{{ item.quantity if item.quantity is not none else 1 }} {% if item.note %}有备注{% endif %}
{% if item.note %}

{{ item.note }}

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

这个箱子里还没有物品。

{% endif %}
{% endblock %}