{% extends "detail.html" %} {% load yesnoicon %} {% block content %} {% if object.shutter_in_lens is not None %} {% endif %} {% if object.type is not None %} {% endif %} {% if object.purpose is not None %} {% endif %} {% if object.notes is not None %} {% endif %} {% if object.manufacturer is not None %} {% endif %} {% if object.created_at is not None %} {% endif %} {% if object.updated_at is not None %} {% endif %}
Mount {{ object.mount }}
Shutter in lens {{ object.shutter_in_lens|yesnoicon }}
Type {{ object.type }}
Purpose {{ object.purpose }}
Notes {{ object.notes }}
Manufacturer {{ object.manufacturer }}
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 %}
{% endblock %}