[Fixed]-Django filtering on foreign key

1👍

This should be

ForumThread.objects.filter(heading__heading=heading)

as heading is the field in the model ForumThread.

Leave a comment