I have two models each with it's own Modelform.
class Address(models.Model):
street = models.CharField(max_length = 255)
zipcode = models.CharField(max_length = 10)
city = models.CharField(max_length = 255)
class Person(models.Model):
name = models.CharField(max_length = 255)
address = models.OneToOneField(Address)
I'd like to display a single form two update both of these models. From what I've understood, I can use inline-formsets for this. Right?
I'd like to use the class-based UpdateView to handle this. I've tried reading up on formsets but I'm still very confused. Would any of you know how I can accomplish this?
These objects will be created separately using two-separate forms but when updating them, I'd like to have a single form.
Thanks