{% extends "detail.html" %} {% block content %} {% if object.manufacturer is not None %} {% endif %} {% if object.acquired is not None %} {% endif %} {% if object.cost is not None %} {% endif %} {% if object.lost is not None %} {% endif %} {% if object.lost_price is not None %} {% endif %} {% if object.camera_model_compatibility is not None %} {% endif %} {% if object.lens_model_compatibility is not None %} {% endif %}
Accessory type {{ object.type }}
Manufacturer {{ object.manufacturer }} {% if object.manufacturer.country %}{{ object.manufacturer.country.code }}{% endif %}
Model {{ object.model }}
Acquired {{ object.acquired }}
Cost {{ object.cost }}
Lost {{ object.lost }}
Lost price {{ object.lost_price }}
Camera model compatibility
    {% for camera in object.camera_model_compatibility.all %}
  • {{ camera }}
  • {% endfor %}
Lens model compatibility
    {% for lens in object.lens_model_compatibility.all %}
  • {{ lens }}
  • {% endfor %}
{% endblock %}