[Answered ]-How to use add_form for Django admin?

1👍

You need a ModelForm, where you take the values directly from a Model( in this case ModelAdmin) in a form.

https://docs.djangoproject.com/en/4.0/topics/forms/modelforms/

The other way is make "your" admin panel.

Leave a comment