motocultrice labourer aussi les lieux sans email, et proposition opening hours
This commit is contained in:
parent
268ac799e4
commit
cae369c9cd
9 changed files with 565 additions and 53 deletions
28
templates/public/places_with_note.html.twig
Normal file
28
templates/public/places_with_note.html.twig
Normal file
|
@ -0,0 +1,28 @@
|
|||
{% extends 'base.html.twig' %}
|
||||
|
||||
{% block title %}Les lieux ayant des notes{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<div class="container">
|
||||
<h1>Commerces avec une note</h1>
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Nom</th>
|
||||
<th>Note</th>
|
||||
<th>Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for place in places %}
|
||||
<tr>
|
||||
<td><a href="{{ path('app_public_edit', {'id': place.id}) }}">{{ place.name }}</a></td>
|
||||
<td>{{ place.note }}</td>
|
||||
<td><a class="btn btn-primary" href="{{ path('app_public_edit', {'id': place.id}) }}">
|
||||
<i class="bi bi-pencil"></i>
|
||||
</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue