{% extends "base.html" %} {% load thumbnail %} {% block title %}{{ thing.name }} - LabHelper{% endblock %} {% block page_header %} {% endblock %} {% block content %}
{% if thing.picture %} {% thumbnail thing.picture "400x400" crop="center" as thumb %} {{ thing.name }} {% endthumbnail %} {% else %}
No image
{% endif %}
Type
{{ thing.thing_type.name }}
Location
Box {{ thing.box.id }} ({{ thing.box.box_type.name }})
{% if thing.description %}
Description
{{ thing.description }}
{% endif %}
{% csrf_token %}
{% endblock %} {% block extra_js %} {% endblock %}