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