From aa047b3fd85d16917ca8e40733dcc79b37f147e2 Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 8 May 2026 13:34:00 +0200 Subject: [PATCH] fix: eliminar campo images del form (widget no soporta multiple) --- tienda/forms.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tienda/forms.py b/tienda/forms.py index a108c4d..3701a74 100644 --- a/tienda/forms.py +++ b/tienda/forms.py @@ -398,14 +398,4 @@ class ReviewForm(forms.Form): 'rows': 5, 'placeholder': 'Comparte tu experiencia con este producto...' }) - ) - images = forms.ImageField( - label="Imágenes (opcional)", - required=False, - validators=[validate_image_file], - widget=forms.ClearableFileInput(attrs={ - 'class': 'form-control', - 'accept': 'image/*', - 'multiple': True - }) ) \ No newline at end of file