{% extends "detail.html" %}
{% load static %}
{% load boolicontag %}
{% load ratings %}
{% block content %}
Summary |
{% if object.manufacturer is not None %}
Manufacturer |
{% include "manufacturer.html" with manufacturer=object.manufacturer %} |
{% endif %}
Name |
{{ object.name }} |
{% if object.iso is not None %}
ISO |
{{ object.iso }} |
{% endif %}
{% if object.process is not None %}
Process |
{{ object.process }} |
{% endif %}
Features |
{% if object.colour is not None %}
Colour |
{{ object.colour|boolicontag }} |
{% endif %}
{% if object.panchromatic is not None %}
Panchromatic |
{{ object.panchromatic|boolicontag}} |
{% endif %}
Meta |
Rating |
{% ratings object %} |
{% if object.tags.all %}
Tags |
{% for tag in object.tags.all %}
{{ tag.slug }}
{% endfor %} |
{% endif %}
{% if related %}
Similar film stocks |
|
{% endif %}
{% if history %}
Edit history |
{% include "history.html" %} |
{% endif %}
Sharing |
{% include "sharing.html" %} |