8 lines
192 B
Python
8 lines
192 B
Python
from django import forms
|
|
import models
|
|
|
|
class CommentForm(forms.ModelForm):
|
|
class Meta:
|
|
model = models.Comment
|
|
exclude = ('author', 'post', 'parent', 'created', 'updated')
|