Opened 15 years ago
Closed 14 years ago
#12646 closed (fixed)
Flawed error display in admin when using fieldsets.
Reported by: | Matthew Schinckel | Owned by: | nobody |
---|---|---|---|
Component: | contrib.admin | Version: | 1.1 |
Severity: | Keywords: | design_ux | |
Cc: | Triage Stage: | Accepted | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
When using fieldsets within the admin, and an error occurs within one field of a line, then all fields within that line are marked as error by the css. That is, every field gets a red border, when really only the fields with actual errors should have a red border.
Related, but less annoying: the error messages are piled up at the top of the fieldset line, rather than being close to the field with the error.
I overcame both issues using a custom template for fieldset, and some extra css:
- put an extra class on field.box when there are no errors for this field, and an entry in the admin-extra.css setting the border-color back.
- remove the line.errors tag, and replace by appropriate field.field.errors tags within the for loop for fields within the line.
Change History (4)
comment:1 by , 15 years ago
comment:2 by , 15 years ago
Note: I haven't submitted a patch against django, as i am overriding the template in my project(s).
comment:3 by , 15 years ago
Component: | Uncategorized → django.contrib.admin |
---|---|
Keywords: | design_ux added |
Triage Stage: | Unreviewed → Accepted |
comment:4 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
I'm pretty sure this was fixed in [14999].
My replacement for the admin/includes/fieldset.html template, if it is useful: