{% 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 }}
Model {{ object.model }}
Acquired {{ object.acquired }}
Cost {{ object.cost }}
Lost {{ object.lost }}
Lost price {{ object.lost_price }}
Camera model compatibility {{ object.camera_model_compatibility.all|join:", " }}
Lens model compatibility {{ object.lens_model_compatibility.all|join:", " }}
{% endblock %}