{% trans "These containers are inside this item. If you delete this item, they won't have any parent container. You probably want to fix that." %}
{% for container in current_object.children.all %}
{{container}}
{% endfor %}
{% endif %}
{% if current_object.finds.count or current_object.finds_ref.count %}
{% trans "Associated finds" %}
{% if current_object.finds.count %}
{% trans "These finds are inside this item. If you delete this item, they won't be inside any container. You probably want to fix that." %}
{% for find in current_object.finds.all %}
{{find}}
{% endfor %}
{% endif %}
{% if current_object.finds_ref.count %}
{% trans "This item is the reference container for these finds. If you delete this item, they won't have any reference container. You probably want to fix that." %}