{% load widget_tweaks %}
Collection Details
{% if create or edit or duplicate %}
{% else %}
Parent
{% if object.parent %} {{ object.parent.asset_id }} - {{ object.parent.description }} {% else %} - {% endif %}
Children
{% if object.asset_parent.all %}
{% for child in object.asset_parent.all %}
{{ child }}
{% endfor %}
{% else %}
-
{% endif %}
{% endif%}