mirror of
https://forge.chapril.org/tykayn/osm-commerces
synced 2025-10-04 17:04:53 +02:00
up stats par rue et dans le temps
This commit is contained in:
parent
cd6c14c378
commit
7355600e6b
8 changed files with 409 additions and 5 deletions
|
@ -133,6 +133,9 @@
|
|||
<button id="openInJOSM" class="btn btn-secondary ms-2">
|
||||
<i class="bi bi-map"></i> Ouvrir dans JOSM
|
||||
</button>
|
||||
<a href="{{ path('app_public_stats_evolutions', {'insee_code': stats.zone}) }}" class="btn btn-outline-info ms-2">
|
||||
<i class="bi bi-activity"></i> Évolutions des objets
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
{% if stats.population %}
|
||||
|
|
|
@ -79,7 +79,15 @@
|
|||
</td>
|
||||
<td class="{{ commerce.hasAddress() ? 'filled' : '' }}">{{ commerce.address }} </td>
|
||||
<td class="{{ commerce.hasAddress() ? 'filled' : '' }}">{{ commerce.housenumber }}</td>
|
||||
<td class="{{ commerce.hasAddress() ? 'filled' : '' }}">{{ commerce.street }}</td>
|
||||
<td class="{{ commerce.hasAddress() ? 'filled' : '' }}">
|
||||
{% if commerce.street %}
|
||||
<a href="{{ path('app_public_street', {'cityId': commerce.stats.zone, 'streetName': commerce.street|url_encode }) }}">{{ commerce.street }}</a>
|
||||
{% else %}
|
||||
<span class="text-muted">(inconnue)</span>
|
||||
{% endif %}
|
||||
|
||||
{# {{ commerce.street }} #}
|
||||
</td>
|
||||
<td class="{{ commerce.hasWebsite() ? 'filled' : '' }}">{{ commerce.website }}</td>
|
||||
<td class="{{ commerce.hasWheelchair() ? 'filled' : '' }}">{{ commerce.wheelchair }}</td>
|
||||
<td class="{{ commerce.hasNote() ? 'filled' : '' }}">{{ commerce.note }}</td>
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
</th>
|
||||
<th>
|
||||
<i class="bi bi-geo-alt"></i>
|
||||
Adresse ({{ stats.getAvecAdresse() }} / {{ stats.places|length }})</th>
|
||||
Adresse ({{ stats.getAvecAdresse is defined ? stats.getAvecAdresse : 0 }} / {{ stats.places|length }})</th>
|
||||
|
||||
<th>
|
||||
<i class="bi bi-house-fill"></i>
|
||||
|
@ -31,17 +31,17 @@
|
|||
</th>
|
||||
<th>
|
||||
<i class="bi bi-globe"></i>
|
||||
Site web ({{ stats.getAvecSite() }} / {{ stats.places|length }})
|
||||
Site web ({{ stats.getAvecSite is defined ? stats.getAvecSite : 0 }} / {{ stats.places|length }})
|
||||
</th>
|
||||
<th>
|
||||
<i class="bi bi-wheelchair"></i>
|
||||
<i class="bi bi-person-fill-slash"></i>
|
||||
Accès
|
||||
PMR
|
||||
({{ stats.getAvecAccessibilite() }} / {{ stats.places|length }})</th>
|
||||
({{ stats.getAvecAccessibilite is defined ? stats.getAvecAccessibilite : 0 }} / {{ stats.places|length }})</th>
|
||||
<th>
|
||||
<i class="bi bi-pencil-square"></i>
|
||||
Note ? ({{ stats.getAvecNote() }} / {{ stats.places|length }})</th>
|
||||
Note ? ({{ stats.getAvecNote is defined ? stats.getAvecNote : 0 }} / {{ stats.places|length }})</th>
|
||||
<th>
|
||||
<i class="bi bi-pencil-square"></i>
|
||||
Texte de la note</th>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue