Sunday, June 29, 2014

Re: Update user and user profile same form

Henrique,

It looks like what you're looking for is a formset: https://docs.djangoproject.com/en/1.6/topics/forms/formsets/

Andrew

On Saturday, June 28, 2014 11:28:35 PM UTC+9, Henrique Oliveira wrote:
Hi Guys,

I have this model:

class Member(models.Model):
    user = models.OneToOneField(User, primary_key=True)
    date_of_birth = models.DateField('Date of Birth')

    class Meta:
        db_table = 'member'

    def member_email(self):
        return self.user.email

    def first_name(self):
        return self.user.first_name

I'd like to update both, User and Member, in the same form, how can i do that?

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/d8ac8517-30e9-4877-a77d-d5099d6899d6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment