{% extends "base.html" %} {% load thumbnail %} {% load dict_extras %} {% block title %}Box {{ box.id }} - LabHelper{% endblock %} {% block page_header %}
| Picture | Name | Tags | Description |
|---|---|---|---|
|
{% if thing.picture %}
{% thumbnail thing.picture "50x50" crop="center" as thumb %}
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:"-" }} |