{% extends 'base.html.twig' %} {% block title %}{{ 'display.stats'|trans }}- {{ stats.zone }} {{ stats.name }} {% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}

{{ 'display.stats'|trans }} - {{ stats.zone }} {{ stats.name }} - {{ stats.completionPercent }}% complété

Labourer les mises à jour
{% if stats.population %}
Population : {{ stats.population|number_format(0, '.', ' ') }}
1 lieu pour {% set ratio = (stats.population and stats.places|length > 0) ? (stats.population / stats.places|length)|round(0, 'ceil') : '?' %} {{ ratio|number_format(0, '.', ' ') }} habitants
{{ stats.getAvecNote() }} / {{ stats.places|length }} commerces avec note
{% endif %}
{{ stats.getCompletionPercent() }} % complété sur les critères donnés.
{{ stats.places | length}} commerces dans la zone.
{{ stats.getAvecHoraires() }} commerces avec horaires.
{{ stats.getAvecAdresse() }} commerces avec adresse.
{{ stats.getAvecSite() }} commerces avec site web renseigné.
{{ stats.getAvecAccessibilite() }} commerces avec accessibilité PMR renseignée.
{{ stats.getAvecNote() }} commerces avec note renseignée.

Comment est calculé le score de complétion ?

Chargement de la carte...

Tableau des {{ stats.places |length }} lieux

{% include 'admin/stats/table-head.html.twig' %} {% for commerce in stats.places %} {% include 'admin/stats/row.html.twig' %} {% endfor %}

Requête Overpass

            {{query_places|raw}}
            
Exécuter dans Overpass Turbo
{% endblock %}