Hello,
I have issues using custom user model and forms from contrib.auth.forms
When using `UserCreationForm` it says `auth_user table does not exists` which is expected since i have different user model.
Looking at the code, some pieces of code use `get_user_model` and `UserModel` while model forms use `User` imported from `auth.models`.
For example:
https://github.com/django/django/blob/master/django/contrib/auth/forms.py#L10
If i use UserModel there it seems to work fine. Would this be considered a bug?
Just wanted to check before creating a ticket.
Thank you,
Davor