shinneider/django-admin-inline-paginator

Bug with delete

P3RI9 opened this issue · 2 comments

P3RI9 commented

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

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

Thanks! Didn't see in docs