X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/5d9c33d00933597e218b732e3bd0bcbb55c4f371..842685bc24daac46f562bdde7ce527fd5e3b1474:/src/cover/forms.py diff --git a/src/cover/forms.py b/src/cover/forms.py index 3be4e211..550e4a5f 100644 --- a/src/cover/forms.py +++ b/src/cover/forms.py @@ -50,6 +50,11 @@ class ImageAddForm(forms.ModelForm): % {'url': same_source.first().get_absolute_url()})) return source_url + clean_cut_top = lambda self: self.cleaned_data.get('cut_top') or 0 + clean_cut_bottom = lambda self: self.cleaned_data.get('cut_bottom') or 0 + clean_cut_left = lambda self: self.cleaned_data.get('cut_left') or 0 + clean_cut_right = lambda self: self.cleaned_data.get('cut_right') or 0 + def clean(self): cleaned_data = super(ImageAddForm, self).clean() download_url = cleaned_data.get('download_url', None)