I want to filter out all related objects in which (relation = next relation in the virtual community) the date on which the next was initiated, in the past, related to the moment now.
The following declaration seems incorrect because the bool object is not iterable. Is there any other way to do this?
d = Relations.objects.filter(date_follow < datetime.now())
source
share