I have the following defined:
class AnswerChoiceInline(admin.TabularInline): model = AnswerChoice
Obviously, I am getting the default setting by default (default is 3). Is there a way built into the administrator currently to add a new row to the built-in set of fields? So I can fill in 3 lines, and if I need 4th, can I click a link or button and add it an extra line?
At the moment, my workflow is either set to "extra" on an arbitrarily large number, and then it just has empty lines or allows the user to save the model several times (so that additional lines appear).
source share