I have a regular self-referential foreign key:
idol = models.ForeignKey("self", on_delete=models.CASADE)
The admin page allows me to choose the the same object id. How can I prevent the django admin form from showing it?
You can override formfield_for_foreignkey
in your subclass of ModelAdmin
class.
The formfield_for_foreignkey method on a ModelAdmin allows you to override the default formfield for a foreign keys field.
Parent object id can be saved in change_view
method:
class IdolAdmin(admin.ModelAdmin):
def change_view(self, request, object_id, form_url='', extra_context=None):
self.object_id = object_id
return super(IdolAdmin, self).change_view(
request, object_id, form_url, extra_context=extra_context,
)
def formfield_for_foreignkey(self, db_field, request, **kwargs):
if db_field.name == "idol":
kwargs['queryset'] = Idol.objects.exclude(pk=self.object_id)
return super(IdolAdmin, self).formfield_for_foreignkey(
db_field, request, **kwargs)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With