shinneider / django-admin-inline-paginator

MIT License
128 stars 21 forks source link

delete checkbox missing #6

Closed mzduchon closed 3 years ago

mzduchon commented 3 years ago

a normal inline has the Delete? checkbox

luisjorge129 commented 3 years ago

Hi, you can add the can_delete = True attribute to your Inline Admin Model, Django for default has this attribute True but for some reason while using this plugin is False by default:

Example:

from django_admin_inline_paginator.admin import TabularInlinePaginated

class ModelWithFKAdminInline(TabularInlinePaginated):
    fields = (...)
    model = ModelWithFK
    can_delete = True
mzduchon commented 3 years ago

Thanks!