69 lines
1.5 KiB
Twig
69 lines
1.5 KiB
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}
|
|
Camera 📷 CRUD - Flashes
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<h2>Flashes list</h2>
|
|
|
|
<div class="small primary callout">
|
|
<ul>
|
|
<li>
|
|
<a href="{{ path('flash_new') }}">Add a Flash</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<table class="hover scroll stack">
|
|
<thead>
|
|
<tr>
|
|
<th>Actions</th>
|
|
<th>Id</th>
|
|
<th>Brand</th>
|
|
<th>Model</th>
|
|
<th>Is Auto Flash?</th>
|
|
<th>Is TTL?</th>
|
|
<th>TTL Type</th>
|
|
<th>Is P-TTL?</th>
|
|
<th>P-TTL type</th>
|
|
<th>Guide Number</th>
|
|
<th>Purchase Price</th>
|
|
<th>Received</th>
|
|
<th>Batteries</th>
|
|
<th>Notes</th>
|
|
<th>Serial</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for flash in flashes %}
|
|
<tr>
|
|
<td>
|
|
<ul>
|
|
<li>
|
|
<a href="{{ path('flash_edit', { 'id': flash.id }) }}">edit</a>
|
|
</li>
|
|
</ul>
|
|
</td>
|
|
<td><a href="{{ path('flash_show', { 'id': flash.id }) }}">{{ flash.id }}</a></td>
|
|
<td>{{ flash.brand }}</td>
|
|
<td>{{ flash.model }}</td>
|
|
<td>{% if flash.isAutoFlash %}Yes{% else %}No{% endif %}</td>
|
|
<td>{% if flash.isTtl %}Yes{% else %}No{% endif %}</td>
|
|
<td>{{ flash.ttlType }}</td>
|
|
<td>{% if flash.isPTtl %}Yes{% else %}No{% endif %}</td>
|
|
<td>{{ flash.pTtlType }}</td>
|
|
<td>{{ flash.guideNumber }}</td>
|
|
<td>${{ flash.purchasePrice }}</td>
|
|
<td>{% if flash.received %}Yes{% else %}No{% endif %}</td>
|
|
<td>{{ flash.batteries }}</td>
|
|
<td>{{ flash.notes }}</td>
|
|
<td>{{ flash.serial }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
{% endblock %}
|