#11803: Admin does not update every ForeignKey select of the same model
-----------------------------------------------+----------------------------
 Reporter:  danilo <danilo.cabe...@gmail.com>  |       Owner:  nobody    
   Status:  new                                |   Milestone:            
Component:  django.contrib.admin               |     Version:  1.1       
 Keywords:  admin select foreignkey            |       Stage:  Unreviewed
Has_patch:  0                                  |  
-----------------------------------------------+----------------------------
 Consider I have the following models:

 {{{
 #!python
 class City(models.Model):
   name = models.CharField(80)
   state  = models.CharField(2)

 class Person(models.Model):
   living_city = models.ForeignKey(City)
   born_city = models.ForeignKey(City, related_name='born_city_set')
 }}}

 When I go to admin to add a new `Person`, I have the option to add a city
 at `living_city` select and `born_city` select, if I add a city at
 `living_city` select, for example, the `born_city` select does not update
 automatically, it remains empty or without the new option.

-- 
Ticket URL: <http://code.djangoproject.com/ticket/11803>
Django <http://code.djangoproject.com/>
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-updates@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
-~----------~----~----~----~------~----~------~--~---

Reply via email to