HegreEtConfort/templates/intervention/index.html.twig

44 lines
1.4 KiB
Twig
Raw Normal View History

2024-12-20 10:07:22 +01:00
{% extends 'base.html.twig' %}
{% block title %}Intervention index{% endblock %}
{% block body %}
<h1>Intervention index</h1>
<table class="table">
<thead>
<tr>
<th>Id</th>
<th>Wording</th>
<th>Timestamp</th>
<th>Description</th>
<th>Address</th>
<th>Status</th>
<th>actions</th>
</tr>
</thead>
<tbody>
{% for intervention in interventions %}
<tr>
<td>{{ intervention.id }}</td>
<td>{{ intervention.Wording }}</td>
<td>{{ intervention.Timestamp ? intervention.Timestamp|date('Y-m-d H:i:s') : '' }}</td>
<td>{{ intervention.Description }}</td>
<td>{{ intervention.Address }}</td>
<td>{{ intervention.Status }}</td>
<td>
<a href="{{ path('app_intervention_show', {'id': intervention.id}) }}">show</a>
<a href="{{ path('app_intervention_edit', {'id': intervention.id}) }}">edit</a>
</td>
</tr>
{% else %}
<tr>
<td colspan="7">no records found</td>
</tr>
{% endfor %}
</tbody>
</table>
<a href="{{ path('app_intervention_new') }}">Create new</a>
{% endblock %}