Skip to content
Snippets Groups Projects
Commit 6fb0d0a1 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

added fields to forms

parent 27cc9438
No related branches found
No related tags found
No related merge requests found
...@@ -33,13 +33,16 @@ class FormWithButton(ModelForm): ...@@ -33,13 +33,16 @@ class FormWithButton(ModelForm):
class MusicFocusForm(FormWithButton): class MusicFocusForm(FormWithButton):
class Meta: class Meta:
model = MusicFocus model = MusicFocus
fields = '__all__'
class ShowInformationForm(FormWithButton): class ShowInformationForm(FormWithButton):
class Meta: class Meta:
model = ShowInformation model = ShowInformation
fields = '__all__'
class ShowTopicForm(FormWithButton): class ShowTopicForm(FormWithButton):
class Meta: class Meta:
model = ShowTopic model = ShowTopic
fields = '__all__'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment