I'm working on a new project and I'd like to create a django model that will have a variable number of EmailField
s depending on another variable. What I'm trying to create is a House model that has all the members of the house in it (more specifically, their email addresses). Seeing as not all houses are the same size some will have more members than others.
I'd like the user to enter the number of members in their house and have django create an according number of EmailField
s on the model. Is there any easy way to accomplish this? Thanks.