[Django]-How to override admin's password change view logic?

2👍

URL patterns are read top down, so if you interchange your url patterns with the password_change to be first then it’ll take priority and will override the default admin url if ever a duplicate exists.

👤Steven

Leave a comment