summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2015-12-30 08:44:53 (GMT)
committerErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2015-12-30 08:44:53 (GMT)
commit6fb0d0a1b9be8ffb2ecce4ed87fd74ef684f2ef4 (patch)
treefb54a38530a92ae4a511d95cf677841350cd165d /program
parent27cc9438ae7d5ecaeef1599ad40cda39e8d56999 (diff)
added fields to forms
Diffstat (limited to 'program')
-rw-r--r--program/forms.py3
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__'