﻿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
9765	admin: Inline saves extras when model has choices and a default choice	Roland van Laar	nobody	"When having defined choices and a default such as:

{{{
#!python
Class Node:
    status = models.CharField(max_length=10, choices=STATUS_CHOICES, default=1) 
    another_field = models.CharField(max_length=10)
}}}

and in the admin:
{{{
#!python 
class NodeInline(admin.TabularInline):                                                                   
    model = Node                                                               
    extra = 2 
}}}

Pressing save will try to save all the extra fields as well even though no changes in the fields of the extras were made.
This leads to validation errors of the unfilled entries.
The admin should know that nothing has changed and not try to save extra inline field that weren't edited."		closed	contrib.admin	1.0		worksforme	admin inline choices save	rick@…	Unreviewed	0	0	0	0	0	0
