home / django_tickets / tickets

tickets: 8674

This data as json

id created changetime last_pulled_from_trac stage status component type severity version resolution summary description owner reporter keywords easy has_patch needs_better_patch needs_tests needs_docs ui_ux
8674 2008-08-29 09:38:51 2011-09-28 16:12:17 2022-03-06 03:42:52.508199 Unreviewed closed contrib.admin     dev duplicate OneToOne Fields display problem in admin gui This bug is for SVN 8696. I created the following simple !OneToOneField model: {{{ class Man(models.Model): name = models.CharField(max_length=10) def __unicode__(self): return self.name class Woman(models.Model): name = models.CharField(max_length=10) man = models.OneToOneField(Man) def __unicode__(self): return self.name }}} e.g., a woman is married to one man. If I register both models with admin.site.register and start editing them via administration I can add woman to man 1:1 relations, however if I start editing my womens objects again I get "--------" instead of my related man object shown in the select box. Within the database the OneToOneField data looks ok. nobody nekron OneToOne 0 0 0 0 0 0
Powered by Datasette · Queries took 1.502ms