{% extends "comments/base.html" %} {% load i18n %} {% load comments %} {% load comments_ink %} {% block title %}{% trans "Thank you for your vote" %}{% endblock %} {% block content %}

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

{% trans "Your vote already changed the comment's counter." %}
{% if comment %}
{% if not comment.is_removed %}
{{ comment.thread.score }}
⋅ {% endif %} {% 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 %}