﻿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
5954	inline extra fields are required	LongMan <alx.gsv@…>	nobody	"models.py
{{{
#!python
class Student(models.Model):
    ...

class GosExamMark(models.Model):
    student = models.ForeignKey('Student')
    ...

class GosExamMarkTabular(admin.TabularInline):
    model =  GosExamMark
    extra = 1

class StudentOptions(admin.ModelAdmin):
    model = Student
    inlines =  [GosExamMarkTabular, ...]

diplomCorectorSite = admin.AdminSite()
diplomCorectorSite.register(Student, StudentOptions)
}}}

When i'm editing one of Student odjects trough admin site i got error in `extra` object form that tells me fields are required.
But i dont want to add new inline object - i just want to edit Student object."		closed	contrib.admin	newforms-admin		duplicate	edit inline extra required	alx.gsv@…	Unreviewed	0	0	0	0	0	0
