{% extends "detail.html" %} {% load static %} {% block content %} {% if object.manufacturer is not None %} {% endif %} {% if object.negative_size is not None %} {% endif %} {% if object.type is not None %} {% endif %} {% if object.light_source is not None %} {% endif %} {% if object.introduced is not None %} {% endif %} {% if object.discontinued 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 %}
Summary Summary
Manufacturer {% include "manufacturer.html" with manufacturer=object.manufacturer %}
Model {{ object.model }}
Negative size {{ object.negative_size }}
Type {{ object.type }}
Light source {{ object.light_source }}
Introduced {{ object.introduced }}
Discontinued {{ object.discontinued }}
Ownership Ownership
Acquired {{ object.acquired }}
Cost {{ object.cost }}
Lost {{ object.lost }}
Lost price {{ object.lost_price }}
{% endblock %}