Override default get_absolute_url on User objects?
You can do this in your settings.py file using the setting ABSOLUTE_URL_OVERRIDES
ABSOLUTE_URL_OVERRIDES = {
'auth.user': lambda u: "/users/%s/" % u.username,
}
Here's a link to the official docs: https://docs.djangoproject.com/en/stable/ref/settings/