1
0
mirror of https://gitlab.crans.org/mediatek/med.git synced 2025-07-08 14:50:20 +02:00

Pipelines

This commit is contained in:
Yohann D'ANELLO
2020-02-10 04:59:39 +01:00
parent f082716895
commit f3f9c70de9
2 changed files with 8 additions and 5 deletions

View File

@ -82,11 +82,13 @@ class MediaAdminForm(ModelForm):
if field.disabled:
value = self.get_initial_for_field(field, name)
else:
value = field.widget.value_from_datadict(self.data, self.files, self.add_prefix(name))
value = field.widget.value_from_datadict(
self.data, self.files, self.add_prefix(name))
from django.core.exceptions import ValidationError
try:
# We don't want to check a field when we enter an ISBN.
if "_continue" not in self.request.POST or not self.cleaned_data.get('isbn'):
if "_continue" not in self.request.POST \
or not self.cleaned_data.get('isbn'):
value = field.clean(value)
self.cleaned_data[name] = value
if hasattr(self, 'clean_%s' % name):