{% extends 'base.html.twig' %} {% block title %}Camera 📷 CRUD - Lenses{% endblock %} {% block body %}

Lenses

{% for lens in not_received %} {% endfor %}
Actions Brand Description Aperture Range Focal Range Serial Purchase Price Mount Image Size Formerly Owned Front Filter Size Rear Filter Size Is Teleconverter? Design Elements / Groups Aperture Blades Notes
{{ lens.brand }} {{ lens.coatings }} {{ lens.productLine }} {{ lens.model }} {{ lens.minFStop }} — {{ lens.maxFStop }} {{ lens.minFocalLength }} — {{ lens.maxFocalLength }} {{ lens.serial }} ${{ lens.purchasePrice }} {{ lens.mount }} {{ lens.imageSize }} {% if lens.formerlyOwned %} {% else %} {% endif %} {{ lens.frontFilterSize }} {{ lens.rearFilterSize }} {% if lens.isTeleconverter %} {% else %} {% endif %} {{ lens.designElements }} / {{ lens.designGroups }} {{ lens.apertureBlades }} {{ lens.notes }}
{% for lens in lenses %} {% endfor %}
Received
Actions Brand Product Line Description Aperture Range Focal Range Serial Purchase Price Mount Image Size Formerly Owned Filter (F/R) Is Teleconverter? Design Elements / Groups Aperture Blades Notes
{{ lens.brand }} {{ lens.productLine }} {{ lens.coatings }} {{ lens.model }} {{ lens.minFStop }} — {{ lens.maxFStop }} {{ lens.minFocalLength }} — {{ lens.maxFocalLength }} {{ lens.serial }} ${{ lens.purchasePrice }} {{ lens.mount }} {{ lens.imageSize }} {% if lens.formerlyOwned %} {% else %} {% endif %} {{ lens.frontFilterSize }} / {{ lens.rearFilterSize }} {% if lens.isTeleconverter %} {% else %} {% endif %} {{ lens.designElements }} / {{ lens.designGroups }} {{ lens.apertureBlades }} {{ lens.notes }}
{% endblock %}