Changes between Initial Version and Version 4 of Ticket #11905
- Timestamp:
- Feb 3, 2010, 9:20:38 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11905
- Property Milestone → 1.2
- Property Triage Stage Unreviewed → Accepted
-
Ticket #11905 – Description
initial v4 2 2 3 3 Here's a doctest that demonstrates: 4 4 {{{ 5 5 >>> from django.forms.models import modelform_factory, form_for_fields 6 6 >>> from django.contrib.auth.models import User … … 26 26 if self.field.label is None: 27 27 AttributeError: 'NoneType' object has no attribute 'label' 28 28 }}} 29 29 30 30 This appears to be due to logic in form_for_fields (line 102 in my checkout) in the first case, and fields_for_model (line 170) in the second.