{% set can_vote = c.user and c.user != c.user.anonymous()
and h.has_access(artifact, 'post')() %}
{% set voted = artifact.user_voted(c.user) %}
<div id="vote">
<ul>
<li class="{% if voted == 1 %}active{% endif %} {% if can_vote %}js-vote-up{% endif %}">
<b data-icon="+" class="ico ico-vote-up"></b>
</li>
<li class="{% if voted == -1 %}active{% endif %} {% if can_vote %}js-vote-down{% endif %}">
<b data-icon="+" class="ico ico-vote-down"></b>
</li>
</ul>
<span class="votes-up">{{ artifact.votes_up }}</span> up votes |
<span class="votes-down">{{ artifact.votes_down }}</span> down votes | <span class="votes-percent">100</span>%
<span class="comments fright">12 comments</span>
{% if can_vote %}
<form action="{{ action }}" method="POST">
{# csrf protection will be automatically inserted here (_session_id field) #}
</form>
{% endif %}
</div>