{% for comment in comments %}
  • {{ moment(comment.timestamp).fromNow() }}
    {{ comment.author.username }}
    {% if comment.disabled %}

    Ten komentarz zostaƂ zablokowany przez moderatora.

    {% endif %} {% if moderate or not comment.disabled %} {% if comment.body_html %} {{ comment.body_html | safe }} {% else %} {{ comment.body }} {% endif %} {% endif %}
    {% if moderate %}
    {% if comment.disabled %} Odblokuj {% else %} Zablokuj {% endif %} {% endif %}
  • {% endfor %}