Opened 15 years ago

Closed 10 years ago

#11776 closed New feature (fixed)

HTML class for non-field errors

Reported by: Daniel Pope <dan@…> Owned by: Nick
Component: Forms Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: yes
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

In most of my applications I like field errors and non-field errors to display slightly differently. In general I need field errors to line up with the field or use an icon to indicate which field they correspond to (such as an arrow icon). Non-field errors of course can't have an arrow icon and don't line up with fields (ie. need different margins).

At the moment it's difficult to arrange this without extra markup, because it's usually hard to write a CSS selector that selects only field xor non-field errors.

It would be really helpful if the output was, say, <ul class="errorlist nonfielderrorlist"> when rendering form.non_field_errors.

Change History (9)

comment:1 by Russell Keith-Magee, 14 years ago

Triage Stage: UnreviewedAccepted

comment:2 by Peter Baumgartner, 13 years ago

Severity: Normal
Type: New feature

comment:3 by Aymeric Augustin, 12 years ago

UI/UX: unset

Change UI/UX from NULL to False.

comment:4 by Aymeric Augustin, 12 years ago

Easy pickings: unset

Change Easy pickings from NULL to False.

comment:5 by Nick, 10 years ago

Owner: changed from nobody to Nick
Status: newassigned

comment:7 by Tim Graham, 10 years ago

Has patch: set
Needs documentation: set
Version: 1.1master

Patch needs documentation as noted on the PR.

comment:8 by anonymous, 10 years ago

I'm still working on this -- I've just updated the PR.

comment:9 by Tim Graham <timograham@…>, 10 years ago

Resolution: fixed
Status: assignedclosed

In 11f0899bbe7c04dc6109f57c3b36ed8621b8f08e:

Fixed #11776 -- Added CSS class for non-field/top of form errors.

Thanks Daniel Pope for the suggestion.

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