1👍
✅
I think you want the ModelAdmin.save_as
option:
class MyAdmin(admin.ModelAdmin):
...
save_as = True
https://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.save_as
👤Greg
Source:stackexchange.com