{% load i18n misago_avatars misago_batch %}
{% for row in participants|batch:4 %}
{% for participant in row %}
{{ participant.user }}
    {% if participant.is_owner %}
  • grade {% trans "Owner" %}
  • {% endif %}
{% endfor %}
{% endfor %}

{% blocktrans trimmed count users=participants|length %} This thread has {{ users }} participant. {% plural %} This thread has {{ users }} participants. {% endblocktrans %}