def downvote(self, voter): vote = Vote(self, 'DOWN', voter) vote.add()
def upvote(self, voter): vote = Vote(self, 'UP', voter) vote.add()