Hello.
I am trying to fetch objects from two different queries
by using select_related() in order to get all of the related objects.
In template, I am using For loop in order to render all objects of first model separately, as separate containers of the data.
Inside each of these rendered objects of the first model, I need to
show the corresponding data from both queries for the related second
model.
The issue is that, when I am using For loop in template, I can only get the objects for the first related query, but not for the second query which is also related to the first model (basically, what second query is doing is geting all of the objects based on date less then today.)