Changes between Initial Version and Version 1 of Ticket #8436


Ignore:
Timestamp:
Aug 29, 2008, 11:07:37 PM (16 years ago)
Author:
Malcolm Tredinnick
Comment:

Fixed description formatting.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #8436 – Description

    initial v1  
    22
    33I 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
    56class TestForm(forms.ModelForm):
    67    errors = forms.CharField(widget=forms.HiddenInput)
    78    class Meta:
    89        model = MyModel
    9 
     10}}}
    1011Stack trace
    11 
     12{{{
    1213c:\django\django\forms\forms.py in as_table(self)
    1314    175     def as_table(self):
     
    3334
    3435AttributeError: 'CharField' object has no attribute 'get'
     36}}}
Back to Top