{% extends "base.html" %} {% load thumbnail %} {% block title %}{{ thing_type.name }} - LabHelper{% endblock %} {% block page_header %} {% endblock %} {% block content %}
{% if thing_type.parent %}
Parent: {{ thing_type.parent.name }}
{% endif %} {% if thing_type.children.exists %}
Subtypes: {% for child in thing_type.children.all %} {{ child.name }} {% endfor %}
{% endif %}
{% if things_by_type %} {% for subtype, things in things_by_type.items %}

{{ subtype.name }}

{% if things %}
{% for thing in things %} {% endfor %}
Picture Name Box Description
{% if thing.picture %} {% thumbnail thing.picture "50x50" crop="center" as thumb %} {{ thing.name }} {% endthumbnail %} {% else %}
No image
{% endif %}
{{ thing.name }} Box {{ thing.box.id }}
{{ thing.box.box_type.name }}
{{ thing.description|default:"-" }}
{% else %}
No things in this category
{% endif %}
{% endfor %} {% else %}

No things found

This category or its subcategories are empty.

{% endif %} {% endblock %} {% block extra_js %} {% endblock %}