if not (vote_type == 'up' and user.can_vote_up() or user.can_vote_down()):
reputation_required = int(settings.REP_TO_VOTE_UP) if vote_type == 'up' else int(settings.REP_TO_VOTE_DOWN)
action_type = vote_type == 'up' and _('upvote') or _('downvote')
if not (vote_type == 'up' and user.can_vote_up() or user.can_vote_down()):
reputation_required = int(settings.REP_TO_VOTE_UP) if vote_type == 'up' else int(settings.REP_TO_VOTE_DOWN)
action_type = vote_type == 'up' and _('upvote') or _('downvote')