Re: best practices editing data

2008-08-26 Thread Juan Hernandez
I solved it base_fields method in form_for_instance() Thanks jhv On Wed, Aug 27, 2008 at 12:53 PM, Juan Hernandez <[EMAIL PROTECTED]>wrote: > Hey there again. > > I have a question, lets say that I have this model: > > class Users(models.Model): > email = models.CharField(primary_key=True,

best practices editing data

2008-08-26 Thread Juan Hernandez
Hey there again. I have a question, lets say that I have this model: class Users(models.Model): email = models.CharField(primary_key=True, maxlength=240) password = models.CharField(maxlength=60) name = models.CharField(blank=True, maxlength=150) description = models.CharField(bla