mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-10 00:42:06 +00:00

part of the core, since it seems like it could be useful for other kinds of objects as well in the future, but for now only the software catalogue uses it.
10 lines
194 B
Python
10 lines
194 B
Python
from django import forms
|
|
|
|
from models import Organisation
|
|
|
|
class OrganisationForm(forms.ModelForm):
|
|
class Meta:
|
|
model = Organisation
|
|
exclude = ('lastconfirmed', 'approved', 'submitter', )
|
|
|