it/itf/festival/forms.py
2011-10-08 03:03:05 -04:00

11 lines
209 B
Python
Executable file

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