I have the following admin setup so that I can add/edit a user and their profile at the same time.
class ProfileInline(admin.StackedInline): \"\"\"
As of Django 3+ this is as simple as you like:
class EmployeeAddressMap(admin.StackedInline): model = EmployeeAddress min_num = 1 max_num = 1 can_delete = False #specified that this cannnot be removed
Happy coding