{% 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 }}; to this comment?{% endblocktrans %}

{% trans "Comment sent to:" %}
{{ comment.content_object }}
{% if comment.url and not comment.is_removed %}{{ comment.name }}{% else %}{{ comment.name }}{% endif %} ⋅ {{ comment.submit_date }}  
{{ comment.comment|linebreaks|escape }}
{% if authors|length > 0 %}
{% blocktrans with reaction_icon=reaction.icon %}List of users that reacted with &{{ reaction_icon }};{% endblocktrans %}
    {% for name in authors %}
  • {{ name }}
  • {% endfor %}
{% else %}
{% blocktrans %}No user reacted yet with {{ reaction }}{% endblocktrans %}
{% endif %}
{% endblock %}