{% 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 %}Who reacted with &{{ reaction_icon }};?{% endblocktrans %}

{{ object }}
{% if authors|length > 0 %}
    {% for name in authors %}
  • {{ name }}
  • {% endfor %}
{% else %}
{% blocktrans %}No user reacted yet with {{ reaction }}{% endblocktrans %}
{% endif %}
{% endblock %}