[Answered ]-What's causing the tuple and get error in the django?

1👍

The problem is in post_detail. You return a tuple instead of a rendered page

return(request, ‘blog/post/detail.html’, {‘post’: post})

Leave a comment