[Answered ]-Symmetrical many-to-many in Django admin screen

2👍

The M2M table is mapped to a model which is Person.connections.through, so you could use

admin.site.register(Person.connections.through)
👤okm

Leave a comment