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

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

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

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

编辑箱子

物品

{% if box.items %} {% for item in box.items %}

{{ item.name }}

是否容器: {{ "是" if item.is_container else "否" }}

{% if item.quantity is not none %}

数量: {{ item.quantity }}

{% endif %} {% if item.note %}

备注: {{ item.note }}

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

这个箱子里还没有物品。

{% endif %}
{% endblock %}