{% load i18n %} {% load endless %} {% load photo %} {% load forum_tags %} {% paginate comments %} {% for comment in comments %}
{{comment.description|safe}}
{{comment.user|get_path_profile|safe}} {% if comment.user.user.is_troll %} ({% trans "It is a troll" %}) {% endif %}
{% if comment.user.user.online %}
Online
{% else %}
Online
{% endif %} {% trans "Last Seen" %} {% if comment.user.user.last_seen %} {{ comment.user.user.last_seen|timesince }} {% else %} {% trans "a while ago" %} {% endif %}
{% if user.id %} {% if comment|check_like_comment:user %} {{ comment.like }} {% else %} {{ comment.like }} {% endif %} {% else %} {{ comment.like }} {% endif %} {% if comment.user.id == user.id %} {% trans "Remove" %} {% endif %}
{% endfor %} {% show_more %}