{% 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.is_container else "否" }}
{% if item.note %}

{{ item.note }}

{% endif %}
查看详情 编辑 {% if item.is_container %} 查看内部内容 {% endif %}
{% endfor %}
{% else %}

这个箱子里还没有物品。

{% endif %}
{% endblock %}