Whenever I\'m editing object A with a foreign key to object B, a plus option \"add another\" is available next to the choices of object B. How do I remove that option?
I'm using Django 2.x and I think I found best solution, at least for my case.
The HTML file to the "Save and Add Another" button is on your_python_installation\Lib\site-packages\django\contrib\admin\templates\admin\subtmit_line.html
.
your_project\templates\admin\submit_line.html
.{#{% if show_save_and_add_another %}{% endif %}#}
I know this problem is already answered. But maybe someone in the future have a similar case with me.