{# Template for up/down vote arrows. # This template expects these inputs # # - target: ('post', 'comment') # - item: either a "post" object or a "comment" # - user: reference to logged in user #} {% macro vote (target, item, user) %} {% if user %}
{# Show number of votes #} {{ item.vote }}
{% else %} {{ item.vote ~ ' vote' ~ ('s' if item.vote != 1) }} {% endif %}
{% endmacro %}