{% extends 'base.html.twig' %} {% set display_name = profile.displayName ?: profile.username %} {% block title %}Statistiques de {{ display_name }} · LivreComment{% endblock %} {% block body_class %}page-wide{% endblock %} {% block body %}
{{ display_name }}

{% if is_own_profile %}Tes statistiques{% else %}Statistiques de {{ display_name }}{% endif %}

Lecture

{% if stats.totalRatings > 0 %}
Livres notés
{{ stats.totalRatings|number_format(0, ',', ' ') }}
{% endif %} {% if stats.averageRating is not null %}
Moyenne
{{ stats.averageRating|number_format(1, ',', ' ') }} / 5
{% endif %} {% if stats.totalPages > 0 %}
Pages lues
{{ stats.totalPages|number_format(0, ',', ' ') }}
{% endif %} {% if stats.topGenre %}
Genre favori
{{ stats.topGenre }}
{% endif %} {% if stats.topDecade %}
Période favorite
Années {{ stats.topDecade }}
{% endif %}
{% if not stats.hasAny() %}

{% if is_own_profile %}Tu n'as encore noté aucun livre.{% else %}{{ display_name }} n'a encore rien noté.{% endif %}

{% endif %}

Communauté

{{ followers_count > 1 ? 'Abonnés' : 'Abonné' }}
{{ followers_count|number_format(0, ',', ' ') }}
{{ following_count > 1 ? 'Abonnements' : 'Abonnement' }}
{{ following_count|number_format(0, ',', ' ') }}
{% endblock %}