From 39c10e84dcae3cc5adff58d86c1ce0a2e2262fb6 Mon Sep 17 00:00:00 2001 From: Sanj Date: Wed, 29 Aug 2012 15:41:41 +0530 Subject: [PATCH] fix theatregroup form to save (occupation cant be plain m2m) --- itf/itfprofiles/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itf/itfprofiles/forms.py b/itf/itfprofiles/forms.py index 095e065..549f588 100644 --- a/itf/itfprofiles/forms.py +++ b/itf/itfprofiles/forms.py @@ -139,7 +139,7 @@ class TheatreGroupForm(ItfForm): class Meta: model = TheatreGroup - exclude = ('added_by', 'locations',) + exclude = ('added_by', 'locations', 'nature_of_work',)