Opened 15 years ago

Last modified 14 years ago

#9656 closed

Inherit user's password change link doesn't work — at Version 2

Reported by: Maxim Syabro Owned by: nobody
Component: contrib.admin Version: 1.0
Severity: Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Malcolm Tredinnick)

I've created user:

class WTUser(User):
        authtype = models.IntegerField('Authtype', blank=True, null=True, choices = AUTH_TYPES)
        objects = UserManager()

In Admin site I've clicked on WTUser->create new. Instead of enetering login, password and password confirm I've got a big form with all fields.
Next when I click an link "change password" in WTUser edit form, which links to /admin/westtravel/wtuser/password/ and got

Page not found (404)Request Method:	GET
Request URL:	http://127.0.0.1:8000/admin/westtravel/wtuser/password/


wt user object with primary key u'password' does not exist.

Change History (2)

comment:1 by Maxim Syabro, 15 years ago

Please replace an '[' and ']' with '' and ''

comment:2 by Malcolm Tredinnick, 15 years ago

Description: modified (diff)

Fixed description. If only there was some kind of preview button people could use to check before submitting. Oh, wait ... there is.

Note: See TracTickets for help on using tickets.
Back to Top