diff options
Diffstat (limited to 'program')
-rw-r--r-- | program/forms.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/program/forms.py b/program/forms.py index 0c33b20..9bfb7ad 100644 --- a/program/forms.py +++ b/program/forms.py @@ -33,13 +33,16 @@ class FormWithButton(ModelForm): class MusicFocusForm(FormWithButton): class Meta: model = MusicFocus + fields = '__all__' class ShowInformationForm(FormWithButton): class Meta: model = ShowInformation + fields = '__all__' class ShowTopicForm(FormWithButton): class Meta: model = ShowTopic + fields = '__all__' |