Closed mzduchon closed 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
Thanks!
a normal inline has the Delete? checkbox