﻿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
8825	Inherited ManyToMany-fields does not appear in edit forms	Christofer Bernander <nospam@…>	nobody	"Since revision [8855], inherited ManyToMany-fields does not appear in edit forms on the admin site.

Example {{{models.py}}}:

{{{
from django.db import models
from django.contrib import admin

class Person(models.Model):
	name = models.CharField(max_length=64, blank=True, null=True)

class BaseClass(models.Model):
	person = models.ManyToManyField(Person, related_name=""%(class)s_person"", blank=True, null=True)
	text = models.CharField(max_length=64, blank=True, null=True)

class InheritedClass(BaseClass):
	status = models.CharField(max_length=64, blank=True, null=True)

admin.site.register(InheritedClass)
}}}

In the example above, the {{{person}}} field will appear in [8854], but disappear in [8855]."		closed	contrib.admin	dev		fixed	ManyToMany inheritance new_fields		Accepted	1	0	0	0	0	0
