mirror of
https://gitlab.crans.org/mediatek/med.git
synced 2025-07-08 14:50:20 +02:00
Pipelines
This commit is contained in:
@ -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):
|
||||
|
Reference in New Issue
Block a user