{% extends "detail.html" %} {% load static %} {% load boolicontag %} {% block content %} {% if object.format is not None %} {% endif %} {% if object.filmstock is not None %} {% endif %} {% if object.length is not None %} {% endif %} {% if object.finished is not None %} {% endif %} {% if object.batch is not None %} {% endif %} {% if object.expiry 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 %}
Summary Summary
Film format {{ object.format }}
Filmstock {{ object.filmstock }}
Length {{ object.length }}m
Finished {{ object.finished|boolicontag }}
Batch code {{ object.batch }}
Expiry date {{ object.expiry }}
Ownership Ownership
Purchase date {{ object.purchase_date }}
Cost {{ object.cost }}
Source {{ object.source }}
{% if user.is_authenticated %}

Films cut from this bulk film

{% for film in bulkfilm.film_set.all %} {% endfor %}
Film ID Title
{{ film.id_owner }} {{ film.title }}
{% endif %} {% endblock %}