it/itf/itfcore/forms.py

18 lines
615 B
Python
Raw Normal View History

2010-10-21 16:56:21 +00:00
from django import forms
from models import *
from django.forms.models import modelformset_factory, inlineformset_factory
#Inlines for Person Form
ConnectionFormset = inlineformset_factory(Person, PersonPerson, fk_name='person1')
ProductionFormset = inlineformset_factory(Person, PersonProduction)
#Actual person form definition
class PersonForm(forms.ModelForm):
occupations = forms.ModelMultipleChoiceField(Occupation.objects.all(), widget=forms.CheckboxSelectMultiple())
inlines = [ConnectionFormset, ProductionFormset]
class Meta:
model = Person
exclude = ('connections', 'productions')