{% extends "comments/base.html" %} {% load i18n %} {% load comments_ink %} {% block title %}{% blocktrans %}Who reacted with {{ reaction }}{% endblocktrans %}{% endblock %} {% block content %}

{% blocktrans with reaction_icon=reaction.icon %}List of users that reacted with &{{ reaction_icon }}; to{% endblocktrans %}
{{ object }}

{% for user in page_obj %}
{{ user.name }}
{% endfor %}
{% if page_obj.paginator.num_pages > 1 %} {% endif %}
{% endblock %}