{% trans '全部标记' %} | {% trans '好友标记' %} | {% trans '全部评论' %}
{% 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 | truncate:200 }}
{% trans '暂无评论' %}
{% endfor %}
{% include "_pagination.html" %}