removed Play from forms.py

This commit is contained in:
Johnson Chetty 2012-07-27 15:34:09 +02:00
parent 558123e623
commit 64a1d18d9b

View File

@ -24,12 +24,6 @@ class PopupGroupForm(PopupForm):
model = TheatreGroup
fields = ('name', 'email',)
class PopupPlayForm(PopupForm):
class Meta:
model = Play
class PopupProductionForm(PopupForm):
group = forms.ModelChoiceField(TheatreGroup.objects.all(), widget=AutocompleteAddWidget(model_class=TheatreGroup))