﻿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
26229	Missing check for list_editable in admin	Alasdair Nicol	nobody	"Arising from http://stackoverflow.com/questions/35456634/

If `list_display` and `list_editable` are both lists with a single item, and `list_display_links` is not set, then the `list_editable` won't have any effect, because the field will be displayed as a link rather than a form field. We already have admin checks for usage of list_editable, but this case does not appear to be covered.

{{{
class CustomAdmin(admin.ModelAdmin):
    list_display = ('status', )
    list_editable = ('status',)  
}}}

#22792 is a related ticket."	Bug	closed	contrib.admin	dev	Normal	fixed			Accepted	1	0	0	0	0	0
