﻿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
31256	Inline widget permision is now based on it's foregin key.	John Lyu	nobody	"Use an old example:

in models.py
{{{
class Ticket(models.Model):
........

class Action(models.Model):

    ticket = models.ForeignKey(Ticket)
........
}}}

in admin.py:
{{{
class ActionInline(admin.TabularInline):
    model = Action
    extra=1
    max_num=3

class TicketAdmin(admin.ModelAdmin):

.........
        inlines = [
        ActionInline,
        ]
}}}

If I set current user's permisson `edit_Action` but no `edit Ticket`, I will not be able to edit actions inlines in ""Change Ticket"" page.

I think that is different with at least version 2.1.7 and is confusing.
"	Uncategorized	new	Uncategorized	3.0	Normal		Inlines, permision		Unreviewed	0	0	0	0	0	0
