I would like to mimic the behaviour of the related widget wrapper with the add, remove, edit, and view buttons for objects that are related, for example:
I have a class Grading, with a ForeignKey field to Payment, and I would like to be able to go to the Grading CreateView and click on a button to make a Payment in a popup, which when completed gets selected into the Grading ForeignKey field (so if I forget to make a payment before trying to make a Grading I don’t have to go back and make one, then the other). Thanks!