diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2015-12-30 08:44:53 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2015-12-30 08:44:53 (GMT) |
commit | 6fb0d0a1b9be8ffb2ecce4ed87fd74ef684f2ef4 (patch) | |
tree | fb54a38530a92ae4a511d95cf677841350cd165d | |
parent | 27cc9438ae7d5ecaeef1599ad40cda39e8d56999 (diff) |
added fields to forms
-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__' |