Ticket #9665: GetOrderedFormsComment.patch
File GetOrderedFormsComment.patch, 639 bytes (added by , 16 years ago) |
---|
-
django/forms/formsets.py
140 140 def _get_ordered_forms(self): 141 141 """ 142 142 Returns a list of form in the order specified by the incoming data. 143 Raises an AttributeError if deletionis not allowed.143 Raises an AttributeError if ordering is not allowed. 144 144 """ 145 145 if not self.is_valid() or not self.can_order: 146 146 raise AttributeError("'%s' object has no attribute 'ordered_forms'" % self.__class__.__name__)