{% extends "base.html" %} {% block title %}Boxes - LabHelper{% endblock %} {% block page_header %} {% endblock %} {% block content %} {% if boxes %}
{% for box in boxes %} {% endfor %}
Box ID Type Dimensions (mm) Contents Item Count
Box {{ box.id }} {{ box.box_type.name }} {{ box.box_type.width }} x {{ box.box_type.height }} x {{ box.box_type.length }} {% if box.things.all %}
{% for thing in box.things.all %} {{ thing.name }} {% endfor %}
{% else %} Empty {% endif %}
{{ box.things.count }}
{% else %}

No boxes found

Create your first box to get started.

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