mirror of
https://forge.chapril.org/tykayn/osm-commerces
synced 2025-10-04 17:04:53 +02:00
bubble fraicheur des completions ajouté
This commit is contained in:
parent
cd8369d08c
commit
93086eba60
18 changed files with 179 additions and 66 deletions
|
@ -28,5 +28,7 @@ En vous souhaitant une bonne journée.
|
|||
<br>
|
||||
<hr>
|
||||
|
||||
{% if place.id %}
|
||||
<a href="{{ path('app_admin_commerce', {'id': place.id}) }}">Ne plus être sollicité pour mettre à jour mon commerce</a>
|
||||
{% endif %}
|
||||
</div>
|
|
@ -25,7 +25,7 @@ commerces existants déjà en base: {{ commerces|length }}
|
|||
</p>
|
||||
{# {{ dump(commerces[0]) }} #}
|
||||
|
||||
<table class="table table-striped js-sort-table">
|
||||
<table class="table table-striped table-sort">
|
||||
{% include 'admin/stats/table-head.html.twig' %}
|
||||
|
||||
<tbody>
|
||||
|
|
|
@ -54,7 +54,7 @@
|
|||
{{ stats.name }} - {{ stats.completionPercent }}% complété</h1>
|
||||
</div>
|
||||
<div class="col-md-6 col-12">
|
||||
<a href="{{ path('app_admin_labourer', {'insee_code': stats.zone, 'deleteMissing': 0}) }}" class="btn btn-primary" id="labourer">Labourer les mises à jour</a>
|
||||
<a href="{{ path('app_admin_labourer', {'insee_code': stats.zone, 'deleteMissing': 1}) }}" class="btn btn-primary" id="labourer">Labourer les mises à jour</a>
|
||||
<button id="openInJOSM" class="btn btn-secondary ms-2">
|
||||
<i class="bi bi-map"></i> Ouvrir dans JOSM
|
||||
</button>
|
||||
|
@ -262,7 +262,8 @@
|
|||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<table class="table table-bordered table-striped table-hover table-responsive js-sort-table">
|
||||
<input type="text" id="stats-table-search" class="form-control mb-2" placeholder="Filtrer les lieux...">
|
||||
<table id="stats-table" class="table table-bordered table-striped table-hover table-responsive table-sort">
|
||||
{% include 'admin/stats/table-head.html.twig' %}
|
||||
<tbody>
|
||||
{% for commerce in stats.places %}
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
<h1>Commerces fermés</h1>
|
||||
<p>Voici la liste des commerces fermés :</p>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped js-sort-table">
|
||||
<table class="table table-striped table-sort">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Nom du commerce</th>
|
||||
|
|
|
@ -137,8 +137,9 @@
|
|||
<div class="row mt-4">
|
||||
<div class="col-12">
|
||||
<h2>Statistiques par ville</h2>
|
||||
<input type="text" id="dashboard-table-search" class="form-control mb-2" placeholder="Filtrer les villes...">
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped js-sort-table">
|
||||
<table id="dashboard-table" class="table table-striped table-sort">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Ville</th>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<div class="row">
|
||||
<div class="col-12 col-md-6 ">
|
||||
<h2>Lieux modifiés</h2>
|
||||
<table class="table table-striped table-hover table-responsive js-sort-table">
|
||||
<table class="table table-striped table-hover table-responsive table-sort">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Nom</th>
|
||||
|
@ -33,7 +33,7 @@
|
|||
</div>
|
||||
<div class="col-12 col-md-6 ">
|
||||
<h2>Lieux affichés</h2>
|
||||
<table class="table table-striped table-hover table-responsive js-sort-table">
|
||||
<table class="table table-striped table-hover table-responsive table-sort">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Nom</th>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
{% block body %}
|
||||
<div class="container">
|
||||
<h1>Commerces avec une note</h1>
|
||||
<table class="table table-striped js-sort-table table-hover table-responsive">
|
||||
<table class="table table-striped table-hover table-responsive table-sort">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Nom</th>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue