1👍
✅
You haven’t associated your custom manager with the model. You need to do so explicitly:
class Item(models.Model):
...
objects = ItemManager()
Source:stackexchange.com