{% load i18n %} {% load humanize static %} {% load thumbnail %} {% for reply in thread %}
  • {% thumbnail reply.user.picture "x60" as im %} {% trans 'User Image' %} {% empty %} {% trans 'No Profile Picture' %} {% endthumbnail %}
    {% if reply.user == request.user %} {% endif %}

    {{ reply.user.get_profile_name|title }}

    {{ reply }}

    {% if reply.image %} Card image cap {% endif %}
    {{ reply.timestamp|naturaltime }}
  • {% endfor %}