shinneider / django-admin-inline-paginator

MIT License
128 stars 21 forks source link

Bug with delete #22

Closed P3RI9 closed 2 years ago

P3RI9 commented 2 years ago

Hi. I think that there is a bug with the library. The "Delete" checkbox column it isn't shown. Am I doing something wrong?

andreiavram commented 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
P3RI9 commented 2 years ago

Thanks! Didn't see in docs