We have a model:
class Item(model.Model):
pass
def items_red(self):
# filter items by red color
# model instance is NOT changed (saved)
pass
I need to catch Item.items_red()
method execution with Django signal.
Any suggestions how to do that? items_red
not changing model instance in any way.