{% extends "detail.html" %} {% load boolicontag %} {% 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.tags.all %} {% endif %} {% if related %} {% endif %} {% if history %} {% endif %}
Name {{ object.name }}
Manufacturer {% include "manufacturer.html" with manufacturer=object.manufacturer %}
ISO {{ object.iso }}
Colour {{ object.colour|boolicontag }}
Panchromatic {{ object.panchromatic|boolicontag}}
Process {{ object.process }}
Misc
Tags {% for tag in object.tags.all %} {{ tag }} {% endfor %}
Similar film stocks
Edit history {% include "history.html" %}
Sharing {% include "sharing.html" %}
{% for film in filmstock.film_set.all %} {% endfor %}
Film Caption Date
{{ film.pk }} {{ film.description }}
{% endblock %}