add items row on change_list

hi,
i need to edit fields of a product and theirs variants in change_list via list_editable.
In model i have 2 models

  • Product
  • VariantProduct with a FK to Product

Is possible in ProductAdmin change_list show a row of a product and below them the rows of variants?

I am not aware of any way to do this in the list_editable page.

If you’re going to want multiple Product options on a page along with the VariantProduct for each, I believe you’re going to find it easiest to just create your own view using formsets for this.

ok, thanks for your response, i try to it.