33 lines
1.1 KiB
Twig
33 lines
1.1 KiB
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}FoodVendor index{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1 class="mb-4">FoodVendor index</h1>
|
|
|
|
<table class="table table-striped table-hover">
|
|
<thead class="table-light">
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for food_vendor in food_vendors %}
|
|
<tr>
|
|
<td>{{ food_vendor.name }}</td>
|
|
<td>
|
|
<a class="btn btn-sm btn-outline-info me-1" href="{{ path('app_food_vendor_show', {'id': food_vendor.id}) }}">show</a>
|
|
<a class="btn btn-sm btn-outline-primary" href="{{ path('app_food_vendor_edit', {'id': food_vendor.id}) }}">edit</a>
|
|
</td>
|
|
</tr>
|
|
{% else %}
|
|
<tr>
|
|
<td colspan="3" class="text-center text-muted">no records found</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
<a class="btn btn-primary" href="{{ path('app_food_vendor_new') }}">Create new</a>
|
|
{% endblock %}
|