Files
postgres-web/pgweb/core/forms.py
Magnus Hagander 7b3bb5d09b Make organisations support multiple "managers" and not just one
"submitter", thus making it possible for a single person to manage
multiple organisations, as well as for a single organisation to have
multiple different manages.

Re-hook events and news items to use organisation of the submitter
instead of the user who did the submission. (product listings already
did this)
2010-02-26 12:34:19 +01:00

10 lines
193 B
Python

from django import forms
from models import Organisation
class OrganisationForm(forms.ModelForm):
class Meta:
model = Organisation
exclude = ('lastconfirmed', 'approved', 'managers', )