﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
28995	Reuse django admin list view for model as a many to many selector	Dev Aggarwal	nobody	"Hello, I have some models defined like so

{{{

class Question(models.Model):
    ...
    question_image = models.ImageField(default='')

class Exam(models.Model):
    ...     
    questions = models.ManyToManyField(Question)
}}}

Now, I am looking for a way to make it more sensible to select questions in the Exam Admin

Here is what I think should be pretty manageable

1.
Have a link to open a separate question selection page in Exam change Admin
[[Image(https://i.imgur.com/XCR1kMr.png)]]

2.
Reuse this list view from Question's Admin 
[[Image(https://i.imgur.com/QaGz5VM.png)]]

Since it already has checkbox and the images are displayed too, 
All i need is a Submit button and some JS after i have stripped it down to fit my needs.

Can you please guide me on how i should properly reuse that question list view?
    "	New feature	closed	contrib.admin	2.0	Normal	wontfix			Unreviewed	0	0	0	0	0	1
