mirror of
https://github.com/django/django.git
synced 2025-09-26 20:19:16 +00:00
[1.5.x] Sort HTML attributes on generated forms
Backport of 6b9f130278
from master
This commit is contained in:
parent
cade3405c0
commit
5f07d24eaa
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ def flatatt(attrs):
|
|||
|
||||
The result is passed through 'mark_safe'.
|
||||
"""
|
||||
return format_html_join('', ' {0}="{1}"', attrs.items())
|
||||
return format_html_join('', ' {0}="{1}"', sorted(attrs.items()))
|
||||
|
||||
@python_2_unicode_compatible
|
||||
class ErrorDict(dict):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue