{% load i18n %}
{% for comment in comment_list %}
{% if comment.user.is_staff %}{% trans "Moderator" %}{% endif %} {% blocktrans with date=comment.submit_date name=comment.name %}On {{ date }}, {{ name }} wrote:{% endblocktrans %}
{% if comment.user.is_staff %}

{{ comment.comment|urlizetrunc:40|linebreaksbr }}

{% else %} {% if comment.comment != comment.comment|truncatewords:20 %}

{{ comment.comment|truncatewords:20 }}

{{ comment.comment|urlizetrunc:40|linebreaksbr }}

{% else %}

{{ comment.comment|urlizetrunc:40|linebreaksbr }}

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