diff --git a/opentech/apply/stream_forms/blocks.py b/opentech/apply/stream_forms/blocks.py index 86fcf0b4b968db919ad77541fbf7b874eb0cfb76..d8a808422f4a42dbaea627bfcaff9c742e9ae150 100644 --- a/opentech/apply/stream_forms/blocks.py +++ b/opentech/apply/stream_forms/blocks.py @@ -387,13 +387,6 @@ class ImageFieldBlock(UploadableMediaBlock): label = _('Image field') icon = 'image' - def get_field_kwargs(self, struct_value): - kwargs = super().get_field_kwargs(struct_value) - # We do not need this when we are on Django 2.1 - # https://docs.djangoproject.com/en/2.1/releases/2.1/#forms - kwargs['widget'] = self.get_widget(struct_value)(attrs={'accept': 'image/*'}) - return kwargs - class FileFieldBlock(UploadableMediaBlock): """This doesn't know how to save the uploaded files