{{ item.title }}{% trans ' 的标记' %}
{% for member in marks %} {% with member.mark as mark %}
{% if mark.comment %}
{% liked_piece mark.comment as liked %}
{% include 'like_stats.html' with liked=liked piece=mark.comment %}
{% endif %}
{{ mark.owner.display_name }}
{{ mark.action_label }}
{% if mark.rating_grade %}{{ mark.rating_grade|rating_star }}{% endif %}
{% if mark.comment.focus_item %}
{{ mark.comment.focus_item.title }}
{% endif %}
{{ mark.comment.html|safe }}
{% trans '暂无标记' %}
{% endfor %}
{% if marks.pagination.has_prev %}
«
‹
{% endif %}
{% for page in marks.pagination.page_range %}
{% if page == marks.pagination.current_page %}
{{ page }}
{% else %}
{{ page }}
{% endif %}
{% endfor %}
{% if marks.pagination.has_next %}
›
»
{% endif %}
{% include "sidebar_item.html" %}