{% extends "detail.html" %}
{% load static %}
{% load boolicontag %}
{% load formatting %}
{% block content %}
{% if object.image %}
Physical |
{% if object.manufacturer is not None %}
| Manufacturer |
{{ object.manufacturer }} |
{% endif %}
| Model |
{{ object.model|aperture }} |
{% if object.disambiguation is not None %}
| Disambiguation |
{{ object.disambiguation }} |
{% endif %}
{% if object.mount is not None %}
| Mount |
{{ object.mount }} |
{% endif %}
{% if object.introduced is not None %}
| Marketed |
{{ object.introduced }}{% if object.discontinued is not None %}-{{ object.discontinued }}{% endif %} |
{% endif %}
{% if object.weight is not None %}
| Weight |
{{ object.weight }}g |
{% endif %}
{% if object.length is not None %}
| Length |
{{ object.length }}mm |
{% endif %}
{% if object.diameter is not None %}
| Diameter |
{{ object.diameter }}mm |
{% endif %}
Optics |
{% if object.zoom is not None %}
| Zoom |
{{ object.zoom|boolicontag }} |
{% endif %}
{% if object.min_focal_length is not None %}
| Focal length |
{{ object.min_focal_length }}{% if object.zoom is not False and object.max_focal_length is not None %}-{{ object.max_focal_length }}{% endif %}mm
|
{% endif %}
{% if object.zoom_ratio is not None %}
| Zoom ratio |
{{ object.zoom_ratio }}× |
{% endif %}
{% if object.max_aperture is not None %}
| Aperture |
f/{{ object.max_aperture }}{% if object.min_aperture is not None %}-{{ object.min_aperture }}{% endif %}
|
{% endif %}
{% if object.closest_focus is not None %}
| Closest focus |
{{ object.closest_focus }}m |
{% endif %}
{% if object.elements is not None and object.groups is not None %}
| Elements/Groups |
{{ object.elements }}/{{ object.groups }} |
{% else %}
{% if object.elements is not None %}
| Elements |
{{ object.elements }} |
{% endif %}
{% if object.groups is not None %}
| Groups |
{{ object.groups }} |
{% endif %}
{% endif %}
{% if object.nominal_max_angle_diag is not None %}
| Diagonal angle of view |
{{ object.nominal_max_angle_diag }}{% if object.zoom is not False and object.nominal_min_angle_diag is not None %}-{{ object.nominal_min_angle_diag }}{% endif %}°
|
{% endif %}
{% if object.lens_type %}
| Lens type |
{{ object.lens_type }} |
{% endif %}
{% if object.magnification is not None %}
| Maximum magnification |
{{ object.magnification }}× |
{% endif %}
{% if object.negative_size is not None %}
| Negative size |
{{ object.negative_size }} |
{% endif %}
{% if object.aperture_blades is not None %}
| Aperture blades |
{{ object.aperture_blades }} |
{% endif %}
{% if object.image_circle is not None %}
| Image circle |
{{ object.image_circle }}mm |
{% endif %}
{% if object.diagram %}
| Optical diagram |
|
{% endif %}
Features |
{% if object.autofocus is not None %}
| Autofocus |
{{ object.autofocus|boolicontag }} |
{% endif %}
{% if object.filter_thread is not None %}
| Filter thread |
{{ object.filter_thread }}mm |
{% endif %}
{% if object.coating is not None %}
| Coating |
{{ object.coating }} |
{% endif %}
{% if object.hood is not None %}
| Hood |
{{ object.hood }} |
{% endif %}
{% if object.shutter_model is not None %}
| Shutter model |
{{ object.shutter_model }} |
{% endif %}
Misc |
{% if object.notes is not None %}
| Notes |
{{ object.notes }} |
{% endif %}
{% if object.tags.all %}
| Tags |
{% for tag in object.tags.all %}
{{ tag }}
{% endfor %} |
{% endif %}
{% if related %}
| Similar lens models |
|
{% endif %}
{% if object.url is not None %}
| URL |
{{ object.url }} |
{% endif %}
{% if history %}
| Edit history |
{% include "history.html" %} |
{% endif %}
| Sharing |
{% include "sharing.html" %} |
{% if user.is_authenticated %}
{% if mine %}