{% load user_actions %} {% load i18n %}
{% trans "my comment and tags" %} {% if mark.comment or mark.tags %} {% else %} {% endif %}
{% for tag in mark.tags %} {{ tag }} {% endfor %}
{% if mark.comment %} {% if mark.comment.latest_post %} {% include "action_like_post.html" with post=mark.comment.latest_post %} {% include "action_boost_post.html" with post=mark.comment.latest_post %} {% include "action_open_post.html" with post=mark.comment.latest_post %} {% endif %} {% comment %} {{ mark.comment.created_time|date }} {% endcomment %}

{{ mark.comment.html|safe }}

{% endif %} {% for comment in child_item_comments %} {% if comment.latest_post %} {% include "action_like_post.html" with post=comment.latest_post %} {% include "action_boost_post.html" with post=comment.latest_post %} {% include "action_open_post.html" with post=comment.latest_post %} {% endif %} {% comment %} {{ comment.created_time|date }} {% endcomment %}

{{ comment.item.title }}: {{ comment.html|safe }}

{% endfor %}
{% trans "my notes" %} {% if mark.shelf %} {% endif %}
{% for note in mark.notes %} {% if note.latest_post %} {% include "action_like_post.html" with post=note.latest_post %} {% include "action_boost_post.html" with post=note.latest_post %} {% include "action_open_post.html" with post=note.latest_post %} {% endif %}
{{ note.title|default:'' }}

{{ note.content|linebreaks }}

{% endfor %}
{% trans "my review" %} {% if not review %} {% endif %}
{% if review %} {% if review.latest_post %} {% 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 %} {% comment %} {{ mark.review.created_time|date }} {% endcomment %}

{{ review.title }}

{% else %} {% comment %} {% trans "nothing so far." %} {% endcomment %} {% endif %}
{% trans "my collection" %}
{% for c in my_collections %}

{{ c.title }} {% if c.visibility > 0 %}{% endif %}

{% empty %} {% comment %} {% trans "nothing so far." %} {% endcomment %} {% endfor %}
{% if mark.logs %}
{% trans "mark history" %}
{% include '_item_user_mark_history.html' %}
{% endif %}