{% if current_user.is_authenticated and current_user.verified %} {% if can_upvote(current_user, post.community) %}
{{ shorten_number(post.up_votes) }}
{% endif %} {% if can_downvote(current_user, post.community) %}
{{ shorten_number(post.down_votes) }}
{% endif %} {% else %}
{{ shorten_number(post.up_votes) }}
{{ shorten_number(post.down_votes) }}
{% endif %}