35 lines
883 B
Twig
35 lines
883 B
Twig
|
{% extends 'base.html.twig' %}
|
||
|
|
||
|
{% block title %}Category index{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>Liste des catégories disponibles :</h1>
|
||
|
|
||
|
<table class="table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Id</th>
|
||
|
<th>Label</th>
|
||
|
<th>actions</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for category in categories %}
|
||
|
<tr>
|
||
|
<td>{{ category.id }}</td>
|
||
|
<td>{{ category.label }}</td>
|
||
|
<td>
|
||
|
<a href="{{ path('app_category_edit', {'id': category.id}) }}">edit</a>
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% else %}
|
||
|
<tr>
|
||
|
<td colspan="3">no records found</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
<a href="{{ path('app_category_new') }}">Create new</a>
|
||
|
{% endblock %}
|