Re: [Django] #14393: 'Add Another' link appears next to ForeignKey field when user has no permission.

2010-10-05 Thread Django
#14393: 'Add Another' link appears next to ForeignKey field when user has no
permission.
---+
  Reporter:  menollo   | Owner:  nobody 
  
Status:  closed| Milestone: 
  
 Component:  django.contrib.admin  |   Version:  1.2
  
Resolution:  fixed |  Keywords:  foreignkey admin 
add link
 Stage:  Unreviewed| Has_patch:  0  
  
Needs_docs:  0 |   Needs_tests:  0  
  
Needs_better_patch:  0 |  
---+
Changes (by anonymous):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 Its fixed in the trunk, see this ticket #1035
 and this changeset r13708

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.



Re: [Django] #14393: 'Add Another' link appears next to ForeignKey field when user has no permission.

2010-10-05 Thread Django
#14393: 'Add Another' link appears next to ForeignKey field when user has no
permission.
---+
  Reporter:  menollo   | Owner:  nobody 
  
Status:  new   | Milestone: 
  
 Component:  django.contrib.admin  |   Version:  1.2
  
Resolution:|  Keywords:  foreignkey admin 
add link
 Stage:  Unreviewed| Has_patch:  0  
  
Needs_docs:  0 |   Needs_tests:  0  
  
Needs_better_patch:  0 |  
---+
Changes (by anonymous):

  * needs_better_patch:  => 0
  * needs_docs:  => 0
  * version:  SVN => 1.2
  * needs_tests:  => 0
  * milestone:  1.3 =>

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.



[Django] #14393: 'Add Another' link appears next to ForeignKey field when user has no permission.

2010-10-05 Thread Django
#14393: 'Add Another' link appears next to ForeignKey field when user has no
permission.
---+
 Reporter:  menollo|   Owner:  nobody
   Status:  new|   Milestone:  1.3   
Component:  django.contrib.admin   | Version:  SVN   
 Keywords:  foreignkey admin add link  |   Stage:  Unreviewed
Has_patch:  0  |  
---+
 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.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.