From 64a1d18d9b45e2fdd9ebfa6819c80127aa4dfcef Mon Sep 17 00:00:00 2001 From: Johnson Chetty Date: Fri, 27 Jul 2012 15:34:09 +0200 Subject: [PATCH] removed Play from forms.py --- itf/itfprofiles/forms.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/itf/itfprofiles/forms.py b/itf/itfprofiles/forms.py index 4cf9898..9139534 100644 --- a/itf/itfprofiles/forms.py +++ b/itf/itfprofiles/forms.py @@ -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))