HegreLand/templates/incident/index.html.twig

31 lines
798 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Incident index{% endblock %}
{% block body %}
<h1>Incident index</h1>
<table class="table">
<thead>
<tr>
<th>Id</th>
<th>Description</th>
</tr>
</thead>
<tbody>
{% for incident in incidents %}
<tr>
<td>{{ incident.id }}</td>
<td>{{ incident.description }}</td>
<td>
<a href="{{ path('incident_show', {'id' : incident.id}) }}">show</a>
<a href="{{ path('incident_edit', {'id' : incident.id}) }}">edit</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
<a href="{{ path('incident_new') }}">Create new</a>
{% endblock %}