Files
postgres-web/pgweb/core/forms.py
Magnus Hagander f216b00037 Implement software catalogue. Break the organisation object out as
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.
2009-12-28 14:22:17 +01:00

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', )