﻿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
11490	Editing a model that contains m2m inline hangs the server	v.kryachko@…	nobody	"The code first:[[BR]]
{{{
#models.py
class Obj(models.Model):
    name = models.CharField(max_length=100)

class ObjConf(models.Model):
    obj = models.ForeignKey(Obj, unique=True)

    someStuff = models.ManyToManyField('someStuff')

class someStuff(models.Model):
    name = models.CharField(max_length=100)

#admin.py
class ObjConfInline(admin.TabularInline):
    model = ObjConf

class ObjAdmin(admin.ModelAdmin):
    inlines = [ObjConfInline,]

admin.site.register(Obj, ObjAdmin)
}}}

When I create a new instance of Obj, everything is OK. But when trying to /admin/project/app_name/Obj/1 the server starts thinking forever and never responds(only Ctrl+C works)"		closed	contrib.admin	1.0		worksforme	inlines		Unreviewed	0	0	0	0	0	0
