Opened 15 years ago
Closed 9 years ago
#12437 closed New feature (fixed)
error_css_class should not override existing classes in html
Reported by: | anonymous | Owned by: | Markus Amalthea Magnuson |
---|---|---|---|
Component: | Forms | Version: | |
Severity: | Normal | Keywords: | forms, errors |
Cc: | markus.magnuson@… | Triage Stage: | Ready for checkin |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
There is no possibility for now to show html row with custom class + error_css_class
For example i want to do something like this
normal_row = u'<div class="js-active forms__width %(html_class_attr)s">......'
because %(html_class_attr)s return string with html attribute itself, not just class name.
The solution i think is just to return css class name.
Change History (7)
comment:1 by , 15 years ago
milestone: | 1.2 |
---|---|
Triage Stage: | Unreviewed → Accepted |
Version: | SVN |
comment:2 by , 14 years ago
Severity: | → Normal |
---|---|
Type: | → New feature |
comment:5 by , 9 years ago
Cc: | added |
---|---|
Has patch: | set |
Owner: | changed from | to
Status: | new → assigned |
I've written a patch for this, including tests: https://github.com/django/django/pull/4819
comment:6 by , 9 years ago
Triage Stage: | Accepted → Ready for checkin |
---|
Note:
See TracTickets
for help on using tickets.
We can't remove html_class_attr from the dictionary that is provided, but I can't see any reason we shouldn't expose css_classes for use in templating rows.