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

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

Properties

{% for k, v in item.props.items %} {% empty %} {% endfor %}
key value
{{ k }}{{ v|urlize }}
No properties
{% if images %}

Photos

{% for image in images %} {% endfor %}
{% endif %} {% if labels %}

Labels

{% for label in labels %} {{ label.id }} ({{ label.revision }}) {% endfor %} {% endif %}
{{ item.description|urlize }}

Children

{% for child in children|dictsort:"name" %} {% empty %} {% endfor %}
{{ child.name }}
No children
{% endblock %}