Update all model registrations to use the new AdminSite and ModelAdmin.
Review Request #11039 — Created May 27, 2020 and submitted — Latest diff uploaded
With the introduction of new
AdminSite
andModelAdmin
classes for
our new administration UI, it's important that we set a precedent of
using these new classes for all model registration, even though the new
versions are compatible with the old ones.This change switches all model registration to use our new
AdminSite
explicitly, and switches allModelAdmin
subclasses to use our new base
class.
Unit tests pass.
Verified that these were registered correctly in the admin UI.