@classmethod
    def get_user_position(kls, user, relative_to=None):
        try:
            history = History.objects.filter(user=user, relative_to=relative_to).order_by('-date')[0]
            return history.position