{% extends "base.html" %} {% block content %}
当前上下文
Box {{ box.name }}
{{ "容器型 Item" if item and item.is_container else "Item" }} {{ "创建新的二级物品" if not item else "编辑当前二级物品" }}
{% if item and item.image_blob %}

当前图片:

{{ item.name }}
{% endif %}
勾选后,这个 Item 将作为“第二层容器”,后续可以继续往里面添加最后一级的 SubItem。
{% if not item %} {% endif %}
{% endblock %}