{% extends "detail.html" %}
{% load static %}
{% load boolicontag %}
{% block content %}
Summary |
{% if object.format is not None %}
Film format |
{{ object.format }} |
{% endif %}
{% if object.filmstock is not None %}
Filmstock |
{{ object.filmstock }} |
{% endif %}
{% if object.length is not None %}
Length |
{{ object.length }}m |
{% endif %}
{% if object.finished is not None %}
Finished |
{{ object.finished|boolicontag }} |
{% endif %}
{% if object.batch is not None %}
Batch code |
{{ object.batch }} |
{% endif %}
{% if object.expiry is not None %}
Expiry date |
{{ object.expiry }} |
{% endif %}
Ownership |
{% if object.purchase_date is not None %}
Purchase date |
{{ object.purchase_date }} |
{% endif %}
{% if object.cost is not None %}
Cost |
{{ object.cost }} |
{% endif %}
{% if object.source is not None %}
Source |
{{ object.source }} |
{% endif %}
{% if user.is_authenticated %}
Films cut from this bulk film
Film ID |
Title |
{% for film in bulkfilm.film_set.all %}
{{ film.id_owner }} |
{{ film.title }} |
{% endfor %}
{% endif %}
{% endblock %}