{% for comment in comments %}
  • {% if comment.user %}

    {{ comment.user.username }}

    {% else %}

    {{ comment.email }}

    {% endif %}

    {{ comment.message|truncatewords:5 }}

  • {% endfor %}