{% extends 'baseAdmin.html.twig' %} {% block title %}{% endblock %} {% block body %}

Dashboard

{{ stats.users }} utilisateurs

{{ stats.annonces }} locations

{{ stats.reservations }} résas

{{ stats.avis }} avis


Loactions performance

Statistiques par type

Statistiques par region

{% for stat in statistics %} {% endfor %}
Région Wilaya Nombre d'annonces Pourcentage
{{ stat.regionName }} {{ stat.wilayaName }} {{ stat.annonceCount }} {{ (stat.annonceCount / totalAnnouncements * 100)|number_format(2, '.', ',') }}%

Locations premier choix

{% for annonce in bestAnnonces %} {% endfor %}
Location Popriétaire Moyenne
{{annonce.titre}} {% if annonce.image is not null %} avatar de : {{annonce.nom}} {{annonce.prenom}} {% else %} avatar de : {{annonce.nom}} {{annonce.prenom}} {% endif %} {{annonce.nom}} {{annonce.prenom}} {{annonce.note | number_format(1, ",", " ")}}

Location second choix

{% for annonce in worstAnnonces %} {% endfor %}
Location Popriétaire Moyenne
{{annonce.titre}} {% if annonce.image is not null %} avatar de : {{annonce.nom}} {{annonce.prenom}} {% else %} avatar de : {{annonce.nom}} {{annonce.prenom}} {% endif %} {{annonce.nom}} {{annonce.prenom}} {{annonce.note | number_format(1, ",", " ")}}
{% endblock %} {% block javascripts %} {% endblock %}