{% extends "base.html" %} {% load static %} {% load thumbnail %} {% load dict_extras %} {% 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 %}
{% if thing.tags.all %}
Tags
{% regroup thing.tags.all by facet as facet_list %} {% for facet in facet_list %}
{{ facet.grouper.name }}
{% for tag in facet.list %} {{ tag.name }} {% endfor %}
{% endfor %}
{% endif %}
Location
Box {{ thing.box.id }} ({{ thing.box.box_type.name }})
{% if thing.description %}
Description
{{ thing.description|render_markdown }}
{% endif %} {% if thing.files.all %}
Files
{% for file in thing.files.all %} {% if file.filename|lower|slice:"-4:" == '.jpg' or file.filename|lower|slice:"-5:" == '.jpeg' or file.filename|lower|slice:"-4:" == '.png' or file.filename|lower|slice:"-5:" == '.webp' or file.filename|lower|slice:"-4:" == '.gif' or file.filename|lower|slice:"-4:" == '.svg' or file.filename|lower|slice:"-4:" == '.bmp' or file.filename|lower|slice:"-5:" == '.tiff' or file.filename|lower|slice:"-4:" == '.ico' %} {% thumbnail file.file "200x200" crop="center" as thumb %}
{{ file.title }}
{{ file.title }} ({{ file.filename }})
{% endthumbnail %} {% else %}
{{ file.title }} ({{ file.filename }})
{% endif %} {% endfor %}
{% endif %} {% if thing.links.all %}
Links
{% for link in thing.links.all %} {% endfor %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %} {% block extra_css %} {% endblock %}