Closed P3RI9 closed 2 years ago
There's a default set on TabularInlinePaginated
for can_delete=False
. You can override that:
class YourTabularInline(TabularInlinePaginated):
model = YourModel
per_page = 25
can_delete = True
Thanks! Didn't see in docs
Hi. I think that there is a bug with the library. The "Delete" checkbox column it isn't shown. Am I doing something wrong?