Closed eweisner1973 closed 4 years ago
I cannot reproduce this in a fresh install of django-api-starter.
Looking in Step-Up at the commit which introduced UserAdminCreateForm
(21b3c114), the problem there was caused by the previously-used custom form UserAdminForm
, which was specific to Step-Up and is not used in django-api-starter.
Solution in other projects was to use custom form: add_form = UserAdminCreateForm (see Step-Up for example)