I have a model class called Foo, with the following fields start and duration.
class Foo(models.Model):
start = models.DateTimeField()
duration = models.DurationField()
I want to filter all the entries from the Foo table by checking that the start plus duration is less than a certain time.