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