I am having a link on the parent admin page. When I clicks on the link, an editable django admin popup page opens. After updating the details, When I clicks on the Save button, details are saved. But the requirement is to close that popup after clicking on Save button.
My editable admin Django model looks like below
@admin.register(SellOwnership)
class SellOwnershipAdmin(admin.ModelAdmin):
      list_display = ("sell", "owner", "amount")
      list_editable = ("amount")
Kindle advise how to achieve to close the popup while clicking on save button. Thanks.
 
    