﻿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
11807	Admin inlines onetoone related object not saved	nemesys@…	nobody	"Hi there,

I have the following models:

{{{
#!python
class A(models.Model):
   id = models.AutoField(primary_key=True)

class B(models.Model):
   mya = models.OneToOneField(A, primary_key=True)
   text = models.TextField(default='Init')
}}}

In admin interface, I have used an inline to include B when
changing/adding an A. Adding/Changing an A without touching the B inline
results in A beeing saved, but not B. Changing the textfield from B into
sth other than default and it works, but I want the default beeing saved too.

Thanks!
Jean "	Bug	closed	contrib.admin	1.1	Normal	duplicate	admin inline onetoone save		Design decision needed	0	0	0	1	0	0
