В момент отправки данных формы в базу получаю
AttributeError at /person/register/
'unicode' object has no attribute 'get'
Request Method: POST
Request URL: http://localhost:8090/person/register/
Django Version: 1.2.3
Exception Type: AttributeError
Exception Value:
'unicode' object has no attribute 'get'
Exception Location: C:\Python26\lib\site-packages\django\forms\models.py in _get_validation_exclusions, line 310
Python Executable: C:\Python26\python.exe
Python Version: 2.6.6
class Person(models.Model):
login = models.CharField
passwd = models.CharField
class RegForm(forms.ModelForm):
class Meta:
model = Person