diff --git a/app/Resources/views/previouslyownedflash/edit.html.twig b/app/Resources/views/previouslyownedflash/edit.html.twig index fd49bf1..fa27f45 100644 --- a/app/Resources/views/previouslyownedflash/edit.html.twig +++ b/app/Resources/views/previouslyownedflash/edit.html.twig @@ -1,21 +1,22 @@ -{% extends 'base.html.twig' %} +{% extends 'form.html.twig' %} -{% block body %} -
Id | +{{ previouslyOwnedFlash.id }} | +
---|---|
Brand | +{{ previouslyOwnedFlash.brand }} | +
Model | +{{ previouslyOwnedFlash.model }} | +
Is Auto Flash? | +{% if previouslyOwnedFlash.isAutoFlash %}Yes{% else %}No{% endif %} | +
Is TTL? | +{% if previouslyOwnedFlash.isTtl %}Yes{% else %}No{% endif %} | +
TTL Type? | +{{ previouslyOwnedFlash.ttlType }} | +
Is P-TTL? | +{% if previouslyOwnedFlash.isPTtl %}Yes{% else %}No{% endif %} | +
P-TTL Type | +{{ previouslyOwnedFlash.pTtlType }} | +
Guide Number | +{{ previouslyOwnedFlash.guideNumber }} | +
Purchase Price | +{{ previouslyOwnedFlash.purchasePrice }} | +
Batteries | +{{ previouslyOwnedFlash.batteries }} | +
Notes | +{{ previouslyOwnedFlash.notes }} | +
Serial | +{{ previouslyOwnedFlash.serial }} | +
Id | -{{ previouslyOwnedFlash.id }} | -
---|---|
Brand | -{{ previouslyOwnedFlash.brand }} | -
Model | -{{ previouslyOwnedFlash.model }} | -
Isautoflash | -{% if previouslyOwnedFlash.isAutoFlash %}Yes{% else %}No{% endif %} | -
Isttl | -{% if previouslyOwnedFlash.isTtl %}Yes{% else %}No{% endif %} | -
Ttltype | -{{ previouslyOwnedFlash.ttlType }} | -
Ispttl | -{% if previouslyOwnedFlash.isPTtl %}Yes{% else %}No{% endif %} | -
Pttltype | -{{ previouslyOwnedFlash.pTtlType }} | -
Guidenumber | -{{ previouslyOwnedFlash.guideNumber }} | -
Purchaseprice | -{{ previouslyOwnedFlash.purchasePrice }} | -
Batteries | -{{ previouslyOwnedFlash.batteries }} | -
Notes | -{{ previouslyOwnedFlash.notes }} | -
Serial | -{{ previouslyOwnedFlash.serial }} | -
Formerlyowned | -{% if previouslyOwnedFlash.formerlyOwned %}Yes{% else %}No{% endif %} | -