From 5c59d87126124f43ee54a49be0439fc7ff2bb235 Mon Sep 17 00:00:00 2001 From: Bittu Date: Tue, 6 Aug 2024 14:25:13 +0530 Subject: [PATCH] commented the renderer --- django/forms/boundfield.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/forms/boundfield.py b/django/forms/boundfield.py index 66d065c9c8a6..2e31781b8acf 100644 --- a/django/forms/boundfield.py +++ b/django/forms/boundfield.py @@ -94,7 +94,7 @@ def as_widget(self, widget=None, attrs=None, only_initial=False): name=self.html_initial_name if only_initial else self.html_name, value=self.value(), attrs=attrs, - renderer=self.form.renderer, + # renderer=self.form.renderer, ) def as_text(self, attrs=None, **kwargs):