You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Django 2.1 made some changes to form widget classes:
Support for Widget.render() methods without the renderer argument is removed.
This means forms containing an AppHookConfigFormField will fail to render outside the admin site (and they do) because the default widget class is lacking a required argument.
Is the choices argument actually being used?
The text was updated successfully, but these errors were encountered:
nstuardod
changed the title
AppHookConfigWidget.render() lacks the required render argument.
AppHookConfigWidget.render() lacks the required renderer argument.
Sep 6, 2023
Django 2.1 made some changes to form widget classes:
This means forms containing an AppHookConfigFormField will fail to render outside the admin site (and they do) because the default widget class is lacking a required argument.
Is the
choices
argument actually being used?The text was updated successfully, but these errors were encountered: