12 lines
209 B
Python
12 lines
209 B
Python
|
from django import forms
|
||
|
from models import Comment
|
||
|
|
||
|
class MeetingCommentForm(forms.ModelForm):
|
||
|
pass
|
||
|
|
||
|
class Meta:
|
||
|
model = Comment
|
||
|
exclude = ['is_displayed', 'meeting', 'parent', 'posted_date']
|
||
|
|
||
|
|