So i was using this to get the queryset of all founders:
Founder.objects.all().order_by('score').reverse() I was then using:
{% for founder in founders%}
...
{%endfor%}
But then i realized that i couldn’t get to the relations, which brought me here.
I knew i could use .all within an inner loop to return related fields, but cause the model wasn’t directly liked via many-to-many or fk i think it meant that my view was wrong?
I tried changing the initial queryset to use the project to `projects.object.all()’ and then using the same loop in my template, but it still didn’t return what i was after.