1
0
mirror of https://github.com/django/django.git synced 2025-05-11 17:36:28 +00:00

[1.5.x] Sort HTML attributes on generated forms

Backport of 6b9f130278f98b3a15f7ad1959269c200e084f03 from master
This commit is contained in:
Ian Clelland 2012-09-27 21:30:13 -07:00 committed by Luke Plant
parent cade3405c0
commit 5f07d24eaa

View File

@ -20,7 +20,7 @@ def flatatt(attrs):
The result is passed through 'mark_safe'. 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 @python_2_unicode_compatible
class ErrorDict(dict): class ErrorDict(dict):