{% extends "detail.html" %} {% load yesnoicon %} {% block content %} {% if object.manufacturer is not None %} {% endif %} {% if object.iso is not None %} {% endif %} {% if object.colour is not None %} {% endif %} {% if object.panchromatic is not None %} {% endif %} {% if object.process is not None %} {% endif %} {% if object.created_at is not None %} {% endif %} {% if object.updated_at is not None %} {% endif %}
Name {{ object.name }}
Manufacturer {{ object.manufacturer }}
ISO {{ object.iso }}
Colour {{ object.colour|yesnoicon }}
Panchromatic {{ object.panchromatic|yesnoicon}}
Process {{ object.process }}
Misc
Created {{ object.created_at }}{% if object.created_by is not None %} by {{ object.created_by }}{% endif %}
Last updated {{ object.updated_at }}{% if object.updated_by is not None %} by {{ object.updated_by }}{% endif %}
{% for film in filmstock.film_set.all %} {% endfor %}
Film Caption Date
{{ film.pk }} {{ film.description }}
{% endblock %}