mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-09 03:54:08 +00:00
10 lines
203 B
Python
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', )
|
|
|