59 lines
2.1 KiB
Twig
59 lines
2.1 KiB
Twig
|
{% extends 'base.html.twig' %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h2>Previously Owned Flashes</h2>
|
||
|
|
||
|
<table>
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Actions</th>
|
||
|
<th>Id</th>
|
||
|
<th>Brand</th>
|
||
|
<th>Model</th>
|
||
|
<th>Isautoflash</th>
|
||
|
<th>Isttl</th>
|
||
|
<th>Ttltype</th>
|
||
|
<th>Ispttl</th>
|
||
|
<th>Pttltype</th>
|
||
|
<th>Guidenumber</th>
|
||
|
<th>Purchaseprice</th>
|
||
|
<th>Batteries</th>
|
||
|
<th>Notes</th>
|
||
|
<th>Serial</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for previouslyOwnedFlash in previouslyOwnedFlashes %}
|
||
|
<tr>
|
||
|
<td>
|
||
|
<ul>
|
||
|
<li>
|
||
|
<a href="{{ path('previously-owned-flash_edit', { 'id': previouslyOwnedFlash.id }) }}">edit</a>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</td>
|
||
|
<td><a href="{{ path('previously-owned-flash_show', { 'id': previouslyOwnedFlash.id }) }}">{{ previouslyOwnedFlash.id }}</a></td>
|
||
|
<td>{{ previouslyOwnedFlash.brand }}</td>
|
||
|
<td>{{ previouslyOwnedFlash.model }}</td>
|
||
|
<td>{% if previouslyOwnedFlash.isAutoFlash %}Yes{% else %}No{% endif %}</td>
|
||
|
<td>{% if previouslyOwnedFlash.isTtl %}Yes{% else %}No{% endif %}</td>
|
||
|
<td>{{ previouslyOwnedFlash.ttlType }}</td>
|
||
|
<td>{% if previouslyOwnedFlash.isPTtl %}Yes{% else %}No{% endif %}</td>
|
||
|
<td>{{ previouslyOwnedFlash.pTtlType }}</td>
|
||
|
<td>{{ previouslyOwnedFlash.guideNumber }}</td>
|
||
|
<td>{{ previouslyOwnedFlash.purchasePrice }}</td>
|
||
|
<td>{{ previouslyOwnedFlash.batteries }}</td>
|
||
|
<td>{{ previouslyOwnedFlash.notes }}</td>
|
||
|
<td>{{ previouslyOwnedFlash.serial }}</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
<ul>
|
||
|
<li>
|
||
|
<a href="{{ path('previously-owned-flash_new') }}">Create a new previouslyOwnedFlash</a>
|
||
|
</li>
|
||
|
</ul>
|
||
|
{% endblock %}
|