I'm using django-axes for the locking of account when a user tries to enter credentials that are not recognized by the system, it will lock the account.
But when I do perform the password reset function using django auth package on a locked account, obviously there is no shortcut way to remove the lock of the account.
Even if the password is already reset, the account will still be locked by django-axes for a couple of minutes.
I'm trying to perform
python manage.py axes_reset_usernameon the class PasswordResetCompleteView but I'm not sure how to access the username whose password was reset.