﻿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
11803	Admin does not update every ForeignKey select of the same model	danilo <danilo.cabello@…>	Marcelo Galigniana	"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."	Bug	closed	contrib.admin	dev	Normal	fixed	admin select foreignkey	aaboffill@…	Ready for checkin	1	0	0	0	0	0
