summaryrefslogtreecommitdiff
path: root/program/forms.py
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2014-04-29 22:22:00 (GMT)
committerErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2014-04-29 22:22:00 (GMT)
commitac251a798769bc5909d25a1f95a98822d46bfbb8 (patch)
tree46e3753599dbe8e02d6299a557ba707bedbd3acc /program/forms.py
parent185a79985c93c44e058ab4bf0345d2dafc4148ee (diff)
pep8-ized code
Diffstat (limited to 'program/forms.py')
-rw-r--r--program/forms.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/program/forms.py b/program/forms.py
index 0ecd371..0c33b20 100644
--- a/program/forms.py
+++ b/program/forms.py
@@ -1,15 +1,16 @@
-from django import forms
+from django.forms import ModelForm, ValidationError
from django.core.files.images import get_image_dimensions
from program.models import MusicFocus, ShowInformation, ShowTopic
-class FormWithButton(forms.ModelForm):
+
+class FormWithButton(ModelForm):
def clean_button(self):
button = self.cleaned_data.get('button')
if button:
width, height = get_image_dimensions(button)
if width != 11 or height != 11:
- raise forms.ValidationError("width or height is not 11, (11x11)")
+ raise ValidationError("width or height is not 11, (11x11)")
return button
def clean_button_hover(self):
@@ -17,7 +18,7 @@ class FormWithButton(forms.ModelForm):
if button_hover:
width, height = get_image_dimensions(button_hover)
if width != 11 or height != 11:
- raise forms.ValidationError("width or height is not 11, (11x11)")
+ raise ValidationError("width or height is not 11, (11x11)")
return button_hover
def clean_big_button(self):
@@ -25,18 +26,20 @@ class FormWithButton(forms.ModelForm):
if big_button:
width, height = get_image_dimensions(big_button)
if width != 17 or height != 17:
- raise forms.ValidationError("width or height is not 17, (17x17)")
+ raise ValidationError("width or height is not 17, (17x17)")
return big_button
+
class MusicFocusForm(FormWithButton):
class Meta:
model = MusicFocus
+
class ShowInformationForm(FormWithButton):
class Meta:
model = ShowInformation
+
class ShowTopicForm(FormWithButton):
class Meta:
model = ShowTopic
-