Почему у меня не выводится форма для комментария?
Models:
class Comment(models.Model):
body = models.TextField()
Views:
class AddCommentView(CreateView, LoginRequiredMixin):
model = Comment
template_name = 'post_detail.html'
fields = '__all__'
Forms:
class Comment(ModelForm):
class Meta:
model = Comment
fields = ['body']
Urls:
path('post_detail/', AddCommentView.as_view(), name='add_comment')
Template:
<p><form method="POST">
{% csrf_token %}
{{ form.as_p }}
<button>Submit</button>
</form></p>
Трейсбэков не вылетало