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/6dafa254-91d9-453d-947d-c02cd10514fc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment