Комментарии сохраняются в базе данных к связанному посту, но не доступны в шаблоне, даже переменная верна

Комментарии сохраняются в базе данных к связанному посту, но не доступны в шаблоне даже переменная правильная при отладке он показывает комментарий к связанному посту, но не получает его в шаблон только commet.count функция показывает один комментарий вот шаблон

{{ comment.count }} {% for comment in comment5 %} {{comment.user}} {{comment.datetime}} {{comment.content}} {% endfor %}

def blogpost1(request, id): post = get_object_or_404(Post, id=id)
comment5=Comment.objects.filter(blog=post)

print(f"Post: {post}")
print(f"Comments: {comment5}")  # Debugging statement
for comment in comment5:
    print(comment.id, comment.user, comment.content)
print(comment5)
if request.method=='POST':
    user = request.user
    content=request.POST.get('content')
    comment=Comment(user=user,content=content,blog=post)  
    comment.save()
return render(request,'singlpost.html',{'post':post,'comment':comment5})
Вернуться на верх