Summary |
{% if object.manufacturer is not None %}
| Manufacturer |
{% include "manufacturer.html" with manufacturer=object.manufacturer %} |
{% endif %}
| Model |
{{ object.model }} |
| Accessory type |
{{ object.type }} |
Compatibility |
{% if object.camera_model_compatibility.all %}
| Camera model compatibility |
{% for camera in object.camera_model_compatibility.all %}
- {{ camera }}
{% endfor %}
|
{% endif %}
{% if object.lens_model_compatibility.all %}
| Lens model compatibility |
{% for lens in object.lens_model_compatibility.all %}
- {{ lens }}
{% endfor %}
|
{% endif %}
Ownership |
{% if object.acquired is not None %}
| Acquired |
{{ object.acquired }} {{ object.acquired|timesince }} ago |
{% endif %}
{% if object.cost is not None %}
| Cost |
{{ object.cost }} |
{% endif %}
{% if object.lost is not None %}
| Lost |
{{ object.lost }} {{ object.lost|timesince }} ago |
{% endif %}
{% if object.lost_price is not None %}
| Lost price |
{{ object.lost_price }} |
{% endif %}
{% if object.profit is not None %}
| Profit |
{{ object.profit }} |
{% endif %}
{% endblock %}