Skip to main content

check_admin_app

Iterates through all registered Django admin sites and collects system check errors by calling the check method on each site instance.

def check_admin_app(
app_configs: list,
kwargs: dict
) - > list

Checks the configuration of all registered Django admin sites and aggregates any system check errors.

Parameters

NameTypeDescription
app_configslistA list of installed application configurations to restrict the check to, or None to check all apps.
kwargsdictAdditional keyword arguments passed to the underlying admin site check methods.

Returns

TypeDescription
listA list of Django CheckMessage objects containing configuration errors or warnings found across all admin sites.