Name |
{{ object.name }} |
{% if object.manufacturer is not None %}
Manufacturer |
{{ object.manufacturer }} |
{% endif %}
{% if object.iso is not None %}
ISO |
{{ object.iso }} |
{% endif %}
{% if object.colour is not None %}
Colour |
{{ object.colour|yesnoicon }} |
{% endif %}
{% if object.panchromatic is not None %}
Panchromatic |
{{ object.panchromatic|yesnoicon}} |
{% endif %}
{% if object.process is not None %}
Process |
{{ object.process }} |
{% endif %}
Misc |
{% if object.tags is not None %}
Tags |
{% for tag in object.tags.all %}
{{ tag }}
{% endfor %} |
{% endif %}
{% if object.created_at is not None %}
Created |
{{ object.created_at }}{% if object.created_by is not None %} by {{ object.created_by }}{% endif %} |
{% endif %}
{% if object.updated_at is not None %}
Last updated |
{{ object.updated_at }}{% if object.updated_by is not None %} by {{ object.updated_by }}{% endif %} |
{% endif %}
{% if related %}