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