{% extends "base.html" %} {% load thumbnail %} {% load dict_extras %} {% block title %}Box {{ box.id }} - LabHelper{% endblock %} {% block page_header %} {% endblock %} {% block content %}
Type: {{ box.box_type.name }}
{{ box.box_type.width }} x {{ box.box_type.height }} x {{ box.box_type.length }} mm
Add Things
{% if things %}
{% for thing in things %} {% endfor %}
Picture Name Tags Description
{% if thing.picture %} {% thumbnail thing.picture "50x50" crop="center" as thumb %} {{ thing.name }} {% endthumbnail %} {% else %}
No image
{% endif %}
{{ thing.name }} {% if thing.tags.all %} {% for tag in thing.tags.all %} {{ tag.name }} {% endfor %} {% else %} - {% endif %} {{ thing.description|truncate_markdown:100|default:"-" }}
{% else %}

This box is empty

Add some items to get started!

Add Things
{% endif %} {% endblock %} {% block extra_js %} {% endblock %}