diff --git a/django/contrib/admin/widgets.py b/django/contrib/admin/widgets.py index 7851a298ed..e3480e0978 100644 --- a/django/contrib/admin/widgets.py +++ b/django/contrib/admin/widgets.py @@ -494,13 +494,13 @@ class AutocompleteMixin: url_name = "%s:autocomplete" - def __init__(self, field, admin_site, attrs=None, choices=(), using=None): + def __init__(self, field, admin_site, attrs=None, choices=(), using=None, option_attrs=None): self.field = field self.admin_site = admin_site self.db = using self.choices = choices self.attrs = {} if attrs is None else attrs.copy() - self.option_attrs = {} + self.option_attrs = {} if option_attrs is None else option_attrs.copy() self.i18n_name = get_select2_language() def get_url(self): diff --git a/docs/ref/forms/widgets.txt b/docs/ref/forms/widgets.txt index 306a67ffe7..793c347a02 100644 --- a/docs/ref/forms/widgets.txt +++ b/docs/ref/forms/widgets.txt @@ -764,14 +764,14 @@ that specifies the template used to render each choice. For example, for the .. versionadded:: 5.2 An optional dictionary containing option-specific HTML attributes to - be set on the rendered widget. + be set on the options of the rendered widget. .. code-block:: pycon - >>> from django.forms.widgets import RadioSelect - >>> widget = RadioSelect(choices=(("J", "John"),), option_attrs={"class": "special"}) + >>> from django.forms.widgets import Select + >>> widget = Select(choices=(("J", "John"),), option_attrs={"class": "special"}) >>> widget.render(name="beatle", value=["J"]) - '