{% extends 'base.html.twig' %} {% block title %}Tableau de bord{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}

Tableau de bord

Statistiques des villes (bubble chart)
Fraîcheur des données OSM (âge moyen par trimestre)

Labourer une ville

Statistiques par ville

{% for stat in stats_list %} {% endfor %}
Ville Code postal Complétion Nombre de commerces Lieux par habitants Budget Budget/habitant Budget/lieu Date moyenne de mise à jour Actions
{{ stat.name }} {% if not stat.name and stat.zone starts with '751' %} Paris {{ stat.zone|slice(-2) }}e. {% endif %} {{ stat.zone }} {{ stat.completionPercent }}% {{ stat.placesCount }} {{ (stat.placesCount / (stat.population or 1 ))|round(2) }} {% if stat.budgetAnnuel %}{{ stat.budgetAnnuel|number_format(0, '.', ' ') }} €{% else %}-{% endif %} {% if stat.budgetAnnuel and stat.population %}{{ (stat.budgetAnnuel / stat.population)|number_format(0, '.', ' ') }} €{% else %}-{% endif %} {% if stat.budgetAnnuel and stat.placesCount %}{{ (stat.budgetAnnuel / stat.placesCount)|number_format(0, '.', ' ') }} €{% else %}-{% endif %} {{ stat.osmDataDateAvg|date('Y-m-d H:i') }}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}