Files
postgres-web/pgweb/docs/forms.py
2010-01-16 20:02:07 +01:00

10 lines
203 B
Python

from django import forms
from models import DocComment
class DocCommentForm(forms.ModelForm):
class Meta:
model = DocComment
exclude = ('submitter', 'approved', 'version', 'file', 'posted_at', )