{% extends "detail.html" %} {% load static %} {% block content %} {% if object.manufacturer is not None %} {% endif %} {% if object.camera_model_compatibility.all %} {% endif %} {% if object.lens_model_compatibility.all %} {% 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.profit is not None %} {% endif %}
Summary Summary
Manufacturer {% include "manufacturer.html" with manufacturer=object.manufacturer %}
Model {{ object.model }}
Accessory type {{ object.type }}
Ownership Compatibility
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 %}
Ownership Ownership
Acquired {{ object.acquired }} {{ object.acquired|timesince }} ago
Cost {{ object.cost }}
Lost {{ object.lost }} {{ object.lost|timesince }} ago
Lost price {{ object.lost_price }}
Profit {{ object.profit }}
{% endblock %}