{% extends "comments/base.html" %} {% load i18n %} {% load comments_ink %} {% block title %}{% trans "React to comment" %}{% endblock %} {% block content %}

{% trans "Share your reaction to this comment" %}

{% 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 }}
Reaction choices
{% if user_reactions %}

{% trans "Pressed buttons correspond to your active reactions to this comment." %}

{% endif %}
{% csrf_token %} {% render_comment_reactions_buttons user_reactions %} {% if user_reactions %}
{% trans "Click on a button to select or deselect your reaction." %}
{% else %}
{% trans "Click on a button to select your reaction." %}
{% endif %}
{% endblock %}