Adding Checkbox For Each Row to Select Rows Without Adding Any Actions in Django Admin Model Page

Problem image

I want to add checkboxes for each row like action checkboxes to post selected rows to a view with my custom buttons. If I do it like this with adding a pointless action, it behaves like I am doing an action and it redirects to the same page with an error "no action selected".

Before I press the button and post changelist-form

After I press the button

I want to select specific rows especially all rows without adding an action to my ModelAdmin or without changing my Model.

How can I achieve that?

Back to Top