Opened 16 years ago
Closed 16 years ago
#10407 closed (duplicate)
PasswordInput's render_value argument should be documented
Reported by: | collink | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.0 |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Accepted | |
Has patch: | no | Needs documentation: | yes |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
For example:
form = LoginForm( request.POST )
if not form.is_valid( ):
form.fieldspassword.widget.render_value = False
Change History (3)
comment:1 by , 16 years ago
Component: | Uncategorized → Documentation |
---|---|
Needs documentation: | set |
comment:2 by , 16 years ago
Summary: | Documentation needed for Form Values → PasswordInput's render_value argument should be documented |
---|---|
Triage Stage: | Unreviewed → Accepted |
comment:3 by , 16 years ago
Resolution: | → duplicate |
---|---|
Status: | new → closed |
Isn't this the same as #6674?
Note:
See TracTickets
for help on using tickets.
It's a common IRC FAQ.
More than just the example given in the description, it should primarily document that the
PasswordInput
class can be called likePasswordInput(render_value=False)
to achieve this same behaviour