36 lines
930 B
Twig
36 lines
930 B
Twig
|
{% extends 'base.html.twig' %}
|
||
|
|
||
|
{% block title %}Mission index{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>Mission index</h1>
|
||
|
|
||
|
<table class="table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Id</th>
|
||
|
<th>Label</th>
|
||
|
<th>actions</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for mission in missions %}
|
||
|
<tr>
|
||
|
<td>{{ mission.id }}</td>
|
||
|
<td>{{ mission.label }}</td>
|
||
|
<td>
|
||
|
<a href="{{ path('mission_show', {'id': mission.id}) }}">show</a>
|
||
|
<a href="{{ path('mission_edit', {'id': mission.id}) }}">edit</a>
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% else %}
|
||
|
<tr>
|
||
|
<td colspan="3">no records found</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
<a href="{{ path('mission_new') }}">Create new</a>
|
||
|
{% endblock %}
|