Changes between Initial Version and Version 2 of Ticket #9656


Ignore:
Timestamp:
Nov 21, 2008, 5:15:46 AM (15 years ago)
Author:
Malcolm Tredinnick
Comment:

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

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9656 – Description

    initial v2  
    11I've created user:
    2 [[[class WTUser(User):
     2{{{
     3#!python
     4class WTUser(User):
    35        authtype = models.IntegerField('Authtype', blank=True, null=True, choices = AUTH_TYPES)
    4         objects = UserManager()]]]
    5 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.
     6        objects = UserManager()
     7}}}
     8
     9In Admin site I've clicked on W`TUser->create new`. Instead of enetering login, password and password confirm I've got a big form with all fields.
    610Next when I click an link "change password" in WTUser edit form, which links to /admin/westtravel/wtuser/password/ and got
    7 [[[Page not found (404)Request Method:  GET
     11{{{
     12Page not found (404)Request Method:     GET
    813Request URL:    http://127.0.0.1:8000/admin/westtravel/wtuser/password/
    914
    1015
    11 wt user object with primary key u'password' does not exist.]]]
     16wt user object with primary key u'password' does not exist.
     17}}}
Back to Top