Related to my earlier question in regards extending Django's AdminSite, I have sucessfully subclassed AdminSite and can log in perfectly fine. However, my admin site has no application models in it! The admin.autodiscover() function no longer works, and I'm simply not skilled enough with Python to figure out what I'm doing wrong!
Long story short, if I cannot use AdminSite.autodiscover(), how do I load all of the models in my verious Django apps into my subclassed AdminSite instance?