Changes between Initial Version and Version 1 of Ticket #36365
- Timestamp:
- May 3, 2025, 3:25:45 PM (4 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36365 – Description
initial v1 1 1 Django admin filter_horizontal for manytomany field should show all existing relations in the right-side pane, even when formfield_for_manytomany updates the queryset to not show that relation in the left-side pane. It is misleading to the user to not show the existing relation. 2 2 3 Working example attached .3 Working example attached (example.zip). 4 4 Database: club, member, team. 5 5 member and team belong to one club … … 7 7 member can transfer to another club, causing the issue. 8 8 9 admin.py contains two versions of the team admin model (1 and 2) 10 Screenshots for each admin model usage are attached. 9 11