Нужен ли мне шаблон confirm_delete.html для того, чтобы использовать шаблон _delete?

Вот моя ошибка: django.template.exceptions.TemplateDoesNotExist: blog/post_confirm_delete.html

это url в файле mu urls.py path('post/<int:pk>/delete/', BlogDeleteView.as_view(), name='post_delete'),

Вот мой код views.py:

class BlogDeleteView(DeleteView):
    model = Post
    template = "post_delete.html"
    success_url =  reverse_lazy('home')

Даже когда я делаю шаблон post_confirm_delete.html, ничего не меняется.

Вернуться на верх