from django import forms from articles.models import Comment class CommentForm(forms.ModelForm): class Meta: model = Comment fields = ["username", "email", "content"]