Re: Form hasn't got save attribute

2008-07-11 Thread Malcolm Tredinnick
On Fri, 2008-07-11 at 16:06 +0200, Florencio Cano wrote: [...] > I supposed that every object from any class inherited from > newforms.Form already had a save attribute!?!? Why would you suppose that? A form is a class that holds information about an HTML form. That's all. ModelForms have a save

Form hasn't got save attribute

2008-07-11 Thread Florencio Cano
Hello, I have this piece of code: from django import newforms as forms class RegistroForm(forms.Form): username = forms.CharField(max_length=30) password = forms.CharField(max_length=20, widget=forms.PasswordInput()) nombre = forms.CharField(max_length=50) email =