{% extends "detail.html" %}
{% load yesnoicon %}
{% block content %}
Your camera
{% if object.acquired is not None %}
Acquired |
{{ object.acquired }} |
{% endif %}
{% if object.cost is not None %}
Cost |
{{ object.cost }} |
{% endif %}
{% if object.serial is not None %}
Serial |
{{ object.serial }} |
{% endif %}
{% if object.datecode is not None %}
Datecode |
{{ object.datecode }} |
{% endif %}
{% if object.manufactured is not None %}
Manufactured |
{{ object.manufactured }} |
{% endif %}
{% if object.own is not None %}
Own |
{{ object.own|yesnoicon }} |
{% endif %}
{% if object.lens is not None %}
Lens |
{{ object.lens }} |
{% endif %}
{% if object.notes is not None %}
Notes |
{{ object.notes }} |
{% endif %}
{% if object.lost is not None %}
Lost |
{{ object.lost }} |
{% endif %}
{% if object.lost_price is not None %}
Lost price |
{{ object.lost_price }} |
{% endif %}
{% if object.source is not None %}
Source |
{{ object.source }} |
{% endif %}
{% if object.condition is not None %}
Condition |
{{ object.condition }} |
{% endif %}
{% if object.condition_notes is not None %}
Condition notes |
{{ object.condition_notes }} |
{% endif %}
{% if object.display_lens is not None %}
Display lens |
{{ object.display_lens }} |
{% endif %}
The camera model
Camera model |
{% if object.cameramodel is not None %}{{ object.cameramodel }}{% endif %}
|
Introduced |
{{object.cameramodel.introduced }} |
{% endblock %}
{% block moreactions %}
Load film, or something
{%endblock%}