{% extends "webgallery/base/base.html" %} {% block title %} {{ image.getName }} {% endblock %} {% block body %}
{{ image.getDescription }}
| Dimensions (XY): | {{ image.getSizeX }} x {{ image.getSizeY }} |
|---|---|
| Pixels Type: | {{ image.getPixelsType }} |
| Pixels Size (XYZ) (µm): | {{ image.getPixelSizeX|floatformat:4 }} x {{ image.getPixelSizeY|floatformat:4 }} {% if image.getPixelSizeZ %} x {{ image.getPixelSizeZ|floatformat:4 }} {% endif %} |
| Z-sections/Timepoints: | {{ image.getSizeZ }} x {{ image.getSizeT }} |
| Channels: | {% for c in image.getChannels %}{% if not forloop.first %}, {% endif %}{{ c.getLabel }}{% endfor %} |
| Tags: | {% for t in tags %}{% if not forloop.first %}, {% endif %}{{ t.getTextValue }}{% endfor %} |