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
| Name | Type | Description |
|---|---|---|
| app_configs | list | A list of installed application configurations to restrict the check to, or None to check all apps. |
| kwargs | dict | Additional keyword arguments passed to the underlying admin site check methods. |
Returns
| Type | Description |
|---|---|
list | A list of Django CheckMessage objects containing configuration errors or warnings found across all admin sites. |