{% extends 'base.html.twig' %} {% block title %}Suivi global de toutes les villes{% endblock %} {% block body %}

Suivi global de toutes les villes

Rafraîchir le suivi global

Nombre de villes et complétion moyenne


Suivi par thématique

{% set themes = [ 'fire_hydrant', 'charging_station', 'toilets', 'bus_stop', 'defibrillator', 'camera', 'recycling', 'substation', 'laboratory', 'school', 'police', 'healthcare', 'places' ] %} {% set theme_icons = { 'fire_hydrant': 'bi-droplet', 'charging_station': 'bi-lightning-charge', 'toilets': 'bi-toilet', 'bus_stop': 'bi-bus-front', 'defibrillator': 'bi-heart-pulse', 'camera': 'bi-camera-video', 'recycling': 'bi-recycle', 'substation': 'bi-plug', 'laboratory': 'bi-beaker', 'school': 'bi-mortarboard', 'police': 'bi-shield-lock', 'healthcare': 'bi-hospital', 'places': 'bi-geo-alt' } %} {% for theme in themes %}
{{ theme|replace({'_': ' '})|title }}
{% endfor %}
{% endblock %}