| Manufacturer |
{% if object.manufacturer %}{{ object.manufacturer }}{% endif %} |
| Model |
{{ object.model }} |
| Mount |
{% if object.mount %}{{ object.mount }}{% endif %} |
| Zoom |
{{ object.zoom }} |
| Min focal length |
{{ object.min_focal_length }} |
| Max focal length |
{{ object.max_focal_length }} |
| Closest focus |
{{ object.closest_focus }} |
| Maximum aperture |
{{ object.max_aperture }} |
| Minimum aperture |
{{ object.min_aperture }} |
| Elements |
{{ object.elements }} |
| Groups |
{{ object.groups }} |
| Weight |
{{ object.weight }} |
| Nominal min angle diagonal |
{{ object.nominal_min_angle_diag }} |
| Nominal max angle diagonal |
{{ object.nominal_max_angle_diag }} |
| Aperture blades |
{{ object.aperture_blades }} |
| Autofocus |
{{ object.autofocus }} |
| Filter thread |
{{ object.filter_thread }} |
| Maximum magnification |
{{ object.magnification }} |
| URL |
{{ object.url }} |
| Introduced |
{{ object.introduced }} |
| Discontinued |
{{ object.discontinued }} |
| Negative size |
{% if object.negative_size %}{{ object.negative_size }}{% endif %} |
| Fixed mount |
{{ object.fixed_mount }} |
| Notes |
{{ object.notes }} |
| Coating |
{{ object.coating }} |
| Hood |
{{ object.hood }} |
| Lens type |
{{ object.exif_lenstype }} |
| Rectilinear |
{{ object.rectilinear }} |
| Length |
{{ object.length }} |
| Diameter |
{{ object.diameter }} |
| Image circle |
{{ object.image_circle }} |
| Formula |
{{ object.formula }} |
| Shutter model |
{{ object.shutter_model }} |
| Series |
{% if object.series %}
{% for series in object.series.all %}
- {{ series.name }}
{% endfor %}
{% endif %}
|