[Answer]-Show related model info in Django form

1👍

Within your template is it possible to loop over the forms in a formset. See https://docs.djangoproject.com/en/1.7/topics/forms/formsets/#using-a-formset-in-views-and-templates.

So I would make a FormSet containing PhoneNumber modelforms. While looping over the forms, use form.instance.person.address.

Leave a comment