The Django User object maps get_absolute_url to /users/username/ by default. However, we map our user profile pages to a different url.

Found that you can easily change this by using the ABSOLUTE_URL_OVERRIDES setting:

ABSOLUTE_URL_OVERRIDES = {
    'auth.user': lambda o: u'/u/%s/' % o.username,
}