#11374 closed (fixed)
Docs for BooleanField imply CheckboxWidget
| Reported by: | lygaret | Owned by: | lygaret |
|---|---|---|---|
| Component: | Documentation | Version: | dev |
| Severity: | Keywords: | ||
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
The documentation for BooleanField make heavy use of checkboxes. Since it is possible to have a boolean field that associated with another widget (HiddenField in particular), that doesn't correspond to a checkbox, this can get confusing.
See http://groups.google.com/group/django-users/browse_frm/thread/ddd098d7bcb7294d/64357ef166fc260f for the confusion wrought.
Attachments (1)
Change History (5)
comment:1 by , 16 years ago
| Owner: | changed from to |
|---|---|
| Status: | new → assigned |
by , 16 years ago
| Attachment: | boolfield_patch.diff added |
|---|
comment:2 by , 16 years ago
| Has patch: | set |
|---|---|
| Version: | 1.0 → SVN |
comment:3 by , 16 years ago
| Resolution: | → fixed |
|---|---|
| Status: | assigned → closed |
comment:4 by , 16 years ago
Note:
See TracTickets
for help on using tickets.
(In [11236]) Fixed #11374 -- Modified the documentation for forms.BooleanField to allow for the fact that it can be rendered using widgets other than a checkbox. Thanks to lygaret for the patch.