﻿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
14393	'Add Another' link appears next to ForeignKey field when user has no permission.	menollo	nobody	"When I have a model like this:
{{{
#!python
class A(models.Model):
    title = models.CharField(max_length=255)

class B(models.Model):
    title = models.CharField(max_length=255)
    a     = models.ForeignKey(A)
}}}
and the user has no permission to add instances of class A.
The 'Add Another' link is stil visible in the change form (admin) of class B. (on click it gives a permission denied page)

while in the admin homepage, the 'Add' link is not visible at all (for that user)... this seems inconsistent."		closed	contrib.admin	1.2		fixed	foreignkey admin add link		Unreviewed	0	0	0	0	0	0
