{% for comment in comments %}
  • {% if comment.user.pk == user.pk %}
    #{{ forloop.counter }} {{ comment.user.email }} {{ comment.submit_date }}
    {{ comment.comment|urlize|linebreaksbr }}
    {% else %} #{{ forloop.counter }} {{ comment.user.email }} {{ comment.submit_date }}
    {{ comment.comment|urlize|linebreaksbr }} {% endif %}
  • {% endfor %}