﻿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
24323	Document that you cannot use @admin.register() with an __init__() super call that references the class name	Anshuman Aggarwal	nobody	"When registering a django admin using the
{{{
@admin.register(XXXX)
class XXXXAdmin(admin.ModelAdmin):
    def __init__(self, *args, **kwargs):
        super(XXXXAdmin, self).__init__(*args, **kwargs)
}}}

gives an exception:
{{{
NameError: global name XXXXXAdmin is not defined
}}}"	Cleanup/optimization	closed	Documentation	1.7	Normal	fixed			Ready for checkin	1	0	0	0	1	0
