10 lines
190 B
Python
10 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"]
|