django-admin-reversefields¶
A Django admin mixin that exposes reverse ForeignKey relationships directly on the parent object’s change form. Administrators can bind/unbind related objects from either side without custom forms or inlines.
Free software: BSD License
Homepage: django-admin-reversefields on GitHub
Core behaviors¶
Declarative config per admin via
reverse_relationsFilters virtual field names before
ModelFormcreation to avoid unknown-field errorsInjects fields dynamically with per-request, per-object querysets and initial values
On save, synchronizes the real FK(s) on the reverse model(s)
Contents¶
Getting started
How it works
Configuring behavior
Contributor guide