osm-commerces/templates/public/places_with_note.html.twig

39 lines
1.2 KiB
Twig
Raw Normal View History

{% extends 'base.html.twig' %}
{% block title %}Les lieux ayant des notes{% endblock %}
{% block body %}
<div class="container">
<h1>Commerces avec une note</h1>
2025-06-06 13:26:44 +02:00
<table class="table table-striped js-sort-table table-hover table-responsive">
<thead>
<tr>
<th>Nom</th>
<th>Code insee</th>
<th>Note</th>
<th>contenu de note</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for place in places %}
<tr>
2025-05-29 13:30:18 +02:00
<td><a href="{{ path('app_admin_commerce', {'id': place.id}) }}">{{ place.name }}
<i class="bi bi-pencil"></i>
</a>
</td>
<td>
{{place.zipcode}}
</td>
<td>{{ place.note }}</td>
2025-06-01 23:35:15 +02:00
<td>{{ place.noteContent }}</td>
2025-05-29 13:30:18 +02:00
<td><a class="btn btn-primary" href="{{ path('app_admin_commerce', {'id': place.id}) }}">
<i class="bi bi-pencil"></i>
</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
2025-05-29 13:30:18 +02:00
{% endblock %}