﻿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
16582	InlineModelAdmin subclass does not respect the 'extra' field	Peter Mott	nobody	"Upgrading from Django 1.x to Django 1.3 I needed to change the class below setting extra=0 in order to obtain 1 extra field.  When extra was 1 then 2 extra fields were shown, when extra was 3 then 4 extra fields were shown etc. The max_num was respected.

{{{#!python
class MyInlineModelAdmin(InlineModelAdmin):           
    template = ""admin/projects/project/tabular.html""
    extra = 1  # shows 2 extra fields
    max_num = 6
    formfield_overrides = {
        models.ImageField: {'widget': ThumbnailWidget},
    }
  }}}
"	Bug	closed	contrib.admin	1.3	Normal	invalid		peter@…	Unreviewed	0	0	0	0	0	0
