Hi Paddy, > I have an Account model: > > class Account(models.Model): > > accountname = models.CharField(max_length=50, unique=True) > owner = models.ForeignKey(User) > admins = models.ManyToManyField(User, related_name='admins', > blank=True) > accounts = models.ManyToManyField(User, > related_name='accounts', blank=True) > def __str__(self): > return self.name > > I want to create a single form that creates an account and an > owner(contrib.auth.User) at the same time. > > Is there an easy way of doing this or do I need to create a custom > form that contains the fields of both models and then separate the > data in my view?
Django forms support normal OOP extension. So you can simply subclass the built-in user creation form (see django.contrib.auth.forms.UserCreationForm) and add your relevant account model fields to it. You could then extend the save() method of the UserCreationForm to first call the base save method followed by your own save for the Account model. -RD --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---