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
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 =
2 matches
Mail list logo