As stated in the title how does manytomanyfield with through appear in the admin site?
manytomanyfield
through
class SchoolClass(models.Model): id = m
You should use InlineModelAdmin. Docs.
InlineModelAdmin
class TeachSubjectInline(admin.TabularInline): model = TeachSubject extra = 2 # how many rows to show class SchoolClassAdmin(admin.ModelAdmin): inlines = (TeachSubjectInline,) admin.site.register(SchoolClass, SchoolClassAdmin)