[Answer]-Get_by_natural_key throwing AttributeError?

1👍

You haven’t associated your custom manager with the model. You need to do so explicitly:

class Item(models.Model):
    ...
    objects = ItemManager()

Leave a comment