{* For vote types that have the icon first *}
{if $votingScheme eq 'updown'}
{if $usersWhoVotedScores[$cfUser->data.user_id] gt 0}
{else}
{/if}
{else if $votingScheme eq 'up'}
{else if $votingScheme eq 'stars'}
{/if}
{* The actual vote value *}
{if $votingScheme eq 'updown'}
{if $usersWhoVotedScores[$cfUser->data.user_id] gt 0}
+1
{else}
-1
{/if}
{else if $votingScheme eq 'up'}
1
{else}
{$usersWhoVotedScores[$cfUser->data.user_id]}
{/if}
{* For vote types that have the icon last *}
{if $votingScheme eq 'stars'}
{/if}