from django import forms from .models import Comment class CommentPost(forms.ModelForm): class Meta: model = Comment fields = ['body']