Solution 1:
The problem is in post_detail. You return a tuple instead of a rendered page
return(request, 'blog/post/detail.html', {'post': post})
The problem is in post_detail. You return a tuple instead of a rendered page
return(request, 'blog/post/detail.html', {'post': post})