{% extends "detail.html" %}
{% load static %}
{% load leaflet_tags %}
{% load boolicontag %}
{% block content %}
Summary |
{% if object.film is not None %}
Film |
{{ object.film }} |
{% endif %}
Frame |
{{ object.frame }} |
{% if object.caption is not None %}
Caption |
{{ object.caption }} |
{% endif %}
{% if object.date is not None %}
Date |
{{ object.date }} |
{% endif %}
Film |
Filmstock |
{{ object.film.filmstock }} |
{% if object.film.camera.cameramodel.negative_size is not None %}
Negative size |
{{ object.film.camera.cameramodel.negative_size }} |
{% endif %}
Exposure |
{% if object.film.camera is not None %}
Camera |
{{ object.film.camera }} |
{% endif %}
{% if object.lens is not None %}
Lens |
{{ object.lens }} |
{% endif %}
{% if object.focal_length is not None %}
Focal length |
{{ object.focal_length }}mm |
{% endif %}
{% if object.focal_length_35mm is not None %}
Focal length, 35mm equivalent |
{{ object.focal_length_35mm }}mm |
{% endif %}
{% if object.shutter_speed is not None %}
Shutter speed |
{{ object.shutter_speed }} |
{% endif %}
{% if object.aperture is not None %}
Aperture |
f/{{ object.aperture }} |
{% endif %}
{% if object.filter is not None %}
Filter |
{{ object.filter }} |
{% endif %}
{% if object.teleconverter is not None %}
Teleconverter |
{{ object.teleconverter }} |
{% endif %}
{% if object.mount_adapter is not None %}
Adapter |
{{ object.mount_adapter }} |
{% endif %}
{% if object.flash is not None %}
Flash |
{{ object.flash|boolicontag }} |
{% endif %}
{% if object.metering_mode is not None %}
Metering mode |
{{ object.metering_mode }} |
{% endif %}
{% if object.exposure_program is not None %}
Exposure program |
{{ object.exposure_program }} |
{% endif %}
Misc |
{% if object.photographer is not None %}
Photographer |
{{ object.photographer }} |
{% endif %}
{% if object.copy_of is not None %}
Copy of |
{{ object.copy_of }} |
{% endif %}
{% if object.notes is not None %}
Notes |
{{ object.notes|linebreaks }} |
{% endif %}
{% if object.copyright is not None %}
Copyright |
{{ object.copyright }} |
{% endif %}
{% if object.location is not None %}
Location |
{% leaflet_js %}
{% leaflet_css %}
{% leaflet_map "yourmap" callback="window.map_init_basic" %}
{{ object.location.latitude}}°, {{ object.location.longitude}}°
|
{% endif %}