Changes between Initial Version and Version 1 of Ticket #8436
- Timestamp:
- Aug 29, 2008, 11:07:37 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8436 – Description
initial v1 2 2 3 3 I expect this has to do with collisions to properties of Form and variations of problems will probably happen with (errors, changed_data, media) 4 4 {{{ 5 #!python 5 6 class TestForm(forms.ModelForm): 6 7 errors = forms.CharField(widget=forms.HiddenInput) 7 8 class Meta: 8 9 model = MyModel 9 10 }}} 10 11 Stack trace 11 12 {{{ 12 13 c:\django\django\forms\forms.py in as_table(self) 13 14 175 def as_table(self): … … 33 34 34 35 AttributeError: 'CharField' object has no attribute 'get' 36 }}}