{% load comments_ink %} {% with creactions=comment.get_reactions %} {% if creactions.counter > 0 %}
{% for reaction in creactions.list %} {% if reaction.counter > 0 %}
{{ reaction.counter }}&{{ reaction.icon }};
{% if reaction.counter > reaction.authors|length %}{% blocktrans with authors=reaction.authors|join:", " label=reaction.label %}{{ authors }} and more reacted with {{ label }}{% endblocktrans %}{% elif reaction.counter == reaction.authors|length %}{% blocktrans with authors=reaction.authors|join:", " label=reaction.label %}{{ authors }} reacted with {{ label }}{% endblocktrans %}{% endif %}
{% endif %} {% endfor %}
{% endif %} {% endwith %}