{% load i18n %} {% load comments_ink %} {% get_user_vote for comment as user_vote %}
{% if is_input_allowed %}{% if user_vote == '+' %}
{% trans "You voted up" %}
{% endif %}{% else %}{% if user_vote == '+' %}
{% trans "You voted up" %}
{% endif %}{% endif %}
{{ comment.thread.score }}
{% if is_input_allowed %}{% if user_vote == '-' %}
{% trans "You voted down" %}
{% endif %}{% else %}{% if user_vote == '-' %}
{% trans "You voted down" %}
{% endif %}{% endif %}