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

{{ item.name }} {{ item.pk }}

{% if item.props %} {% for k, v in item.props.items %} {% endfor %}
key value
{{ k }}{{ v }}
{% endif %}
{% if children %}

Children

{% for child in children %} {% endfor %}
{{ child.name }}
{% endif %} {% endblock %}