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

{% if is_own_profile %}Tes livres{% else %}Livres de {{ display_name }}{% endif %}

{% if ratings|length > 0 %}
{% for rating in ratings %} {% set rwork = rating.work %} {% set rscore = rating.score %} {% set rfull = rscore|round(0, 'floor') %} {% if work_cover_thumb(rwork) %} Couverture de {{ rwork.title }} {% else %} {% endif %}
{% if rfull > 0 %}{% for i in 1..rfull %}{% endfor %}{% endif %} {% if (rscore - rfull) >= 0.5 %}{% endif %} {% if rating.review %} {% endif %}
{% endfor %}
{% else %}

{% if is_own_profile %}Tu n'as encore noté aucun livre{% else %}Aucun livre noté{% endif %}

{% if is_own_profile %}Trouver un livre{% endif %}
{% endif %} {% endblock %}