50
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/
0
As a side note:
Since django v1.7 the django.contrib.auth.models.AbstractUser
no longer defines a get_absolute_url()
method (see release notes).
So the OP’s problem will not exist with django > v1.7 as you anyways need to define your custom get_absolute_url()
method.
Now there are two way to do this:
- Define a
get_absolute_url()
method in your User model extension. - Use the solution from Mark Lavin’s answer to create (not overwrite) the
User.get_absolute_url()
through theABSOLUTE_URL_OVERRIDES
setting.
- [Django]-In Django – Model Inheritance – Does it allow you to override a parent model's attribute?
- [Django]-Preventing django from appending "_id" to a foreign key field
- [Django]-Django limit_choices_to for multiple fields with "or" condition
Source:stackexchange.com