{% extends "share_links/base.html" %} {% load i18n comments share_links_templatetags humanize markdownify %} {% block content %}

{% translate "Latest comments" %}

{% for comment in page_obj %}
{% if comment.is_removed %}
{% translate "Posted on" %} {% if comment.content_object.title != None and comment.content_object.title != "" %}{{ comment.content_object.title|safe }}{% else %}{{ comment.content_object.link }}{% endif %}:
{{ comment.submit_date|naturaltime }}
{% translate "This comment was moderated." %}
{% else %}
{% translate "Posted on" %} {% if comment.content_object.title != None and comment.content_object.title != "" %}{{ comment.content_object.title|safe }}{% else %}{{ comment.content_object.link }}{% endif %} {% translate "by" %} {% if comment.user_url %}{% endif %}{% if comment.user %}{{ comment.user }}{% else %}{{ comment.name }}{% endif %}{% if comment.user_url %}{% endif %}{% if comment.user %} ({% translate "admin" %}){% endif %}:
{{ comment.submit_date|naturaltime }}

{{ comment.comment|markdownify }}

{% endif %}
{% endfor %} {% endblock %}