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