[Answered ]-Caught AttributeError while rendering: 'str' object has no attribute '_meta'

2đź‘Ť

âś…

What is posts.post supposed to be? posts is a BroadcastReader QuerySet, and probably doesn’t have such an attribute? I’m guessing the comment rendering tags are causing your error? Try removing them, or using posts.0 or similar to debug.

Which “post” do you actually want to display comments for? Your view logic is unclear.

👤DrMeers

Leave a comment