{% extends "detail.html" %} {% block content %} {% if object.format is not None %} {% endif %} {% if object.filmstock is not None %} {% endif %} {% if object.purchase_date is not None %} {% endif %} {% if object.cost is not None %} {% endif %} {% if object.source is not None %} {% endif %} {% if object.batch is not None %} {% endif %} {% if object.expiry is not None %} {% endif %}
Film format {{ object.format }}
Filmstock {{ object.filmstock }}
Purchase date {{ object.purchase_date }}
Cost {{ object.cost }}
Source {{ object.source }}
Batch code {{ object.batch }}
Expiry date {{ object.expiry }}
{% for film in bulkfilm.film_set.all %} {% endfor %}
Film ID Title
{{ film.id }} {{ film.title }}
{% endblock %}