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

{% trans "Thanks for taking the time to participate." %}

{% trans "Your reaction is already shown in the comment." %}
{% if comment %}
{% if comment.url and not comment.is_removed %}{{ comment.name }}{% else %}{{ comment.name }}{% endif %} ⋅ {{ comment.submit_date }}  
{{ comment.comment|linebreaks|escape }}
{% trans "Go back to the comment's page." %}
{% endif %}
{% endblock %}