{% extends "detail.html" %} {% block content %} {% if object.width is not None and object.height is not None %} {% endif %} {% if object.crop_factor is not None %} {% endif %} {% if object.area is not None %} {% endif %} {% if object.aspect_ratio is not None %} {% endif %} {% if object.created_at is not None %} {% endif %} {% if object.updated_at is not None %} {% endif %}
Name {{ object.name }}
Size {{ object.width }} × {{ object.height }}mm
Crop factor {{ object.crop_factor }}×
Area {{ object.area }}mm²
Aspect ratio {{ object.aspect_ratio }}
Misc
Created {{ object.created_at }}{% if object.created_by is not None %} by {{ object.created_by }}{% endif %}
Last updated {{ object.updated_at }}{% if object.updated_by is not None %} by {{ object.updated_by }}{% endif %}
{% if history %}{% include "history.html" %}{% endif %} {% endblock %}