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

数量: {{ item.quantity if item.quantity is not none else '-' }}

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

{% if item.is_container %}
{% if item.subitems %}
{% for subitem in item.subitems %}
{% if subitem.image_blob %} {{ subitem.name }} {% endif %}
SubItem

{{ subitem.name }}

数量:{{ subitem.quantity if subitem.quantity is not none else 1 }} 上级容器:{{ item.name }}
{% if subitem.note %}

备注:{{ subitem.note }}

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

还没有子物品。

{% endif %}
{% else %}

这个物品不是容器,因此不能包含子物品。

{% endif %} {% endblock %}