Django Signals pick up instances and choose the right one

I need a custom function based on date for calculations. I want to use signals for that,

Plan is, When user updates a date, then the signal looks for everything what has the range of that date and uses the instances within the date range

Back to Top