Ticket #3678: baseform_sorteddict.patch
File baseform_sorteddict.patch, 561 bytes (added by , 18 years ago) |
---|
-
django/newforms/forms.py
67 67 # alter self.fields, we create self.fields here by copying base_fields. 68 68 # Instances should always modify self.fields; they should not modify 69 69 # self.base_fields. 70 self.fields = self.base_fields.copy()70 self.fields = SortedDict(self.base_fields) 71 71 72 72 def __unicode__(self): 73 73 return self.as_table()