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

{% trans "Vote this comment" %}

{% trans "Comment sent to:" %}
{{ comment.content_object }}
{% 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 }}
Your vote:
{% if user_vote %}

{% trans "The pressed button correspond to your current vote to this comment." %}

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