[Answered ]-How can I make the multi-select function in django admin

1👍

You could use below option under ModelAdmin inherited class which transforms widget as in image below

filter_horizontal = ('students', 'teacher',)

also refer here

here

👤Anvesh

Leave a comment