{% trans 'marks' %} | {% trans 'marks from who you follow' %} | {% trans 'reviews' %}
{% for review in reviews %}
{% if review.latest_post %}
{% include "action_reply_piece.html" with post=review.latest_post piece=review href=review.url %}
{% include "action_like_post.html" with post=review.latest_post %}
{% include "action_boost_post.html" with post=review.latest_post %}
{% include "action_open_post.html" with post=review.latest_post %}
{% endif %}
{% if review.rating_grade %}{{ review.rating_grade|rating_star }}{% endif %}
{{ review.title }}
-
{{ review.owner.display_name }}
{{ review.plain_content }}
{% trans 'nothing so far.' %}
{% endfor %}
{% include "_pagination.html" %}