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

Previously Owned Lenses

{% for previouslyOwnedLense in previouslyOwnedLenses %} {% endfor %}
Actions Brand Coatings Product Line Model Aperture Range Focal Range Serial Purchase Price Mount Image Size Filter (F/R) Is Teleconverter? Design Elements/Groups Aperture Blades Notes
{{ previouslyOwnedLense.brand }} {{ previouslyOwnedLense.coatings }} {{ previouslyOwnedLense.productLine }} {{ previouslyOwnedLense.model }} {{ previouslyOwnedLense.minFStop }} — {{ previouslyOwnedLense.maxFStop }} {{ previouslyOwnedLense.minFocalLength }} — {{ previouslyOwnedLense.maxFocalLength }} {{ previouslyOwnedLense.serial }} ${{ previouslyOwnedLense.purchasePrice }} {{ previouslyOwnedLense.mount }} {{ previouslyOwnedLense.imageSize }} {{ previouslyOwnedLense.frontFilterSize }} / {{ previouslyOwnedLense.rearFilterSize }} {% if previouslyOwnedLense.isTeleconverter %}✔{% else %}✗{% endif %} {{ previouslyOwnedLense.designElements }}/{{ previouslyOwnedLense.designGroups }} {{ previouslyOwnedLense.apertureBlades }} {{ previouslyOwnedLense.notes }}
{% endblock %}