def user_voted()

in moderator/moderate/templatetags/helpers.py [0:0]


def user_voted(question, user):
    """Check if a user has already voted."""
    return question.votes.filter(user=user).exists()