[Answer]-Django Admin Save and add another preselected fields

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

Leave a comment