系统检查框架

系统检查框架是一套用于验证 Django 项目的静态检查。它检测常见的问题,并提供如何修复这些问题的提示。该框架是可扩展的,所以你可以很容易地添加自己的检查。

关于如何添加自己的检查并与 Django 的系统检查集成的细节,请看 系统检查主题指南

API 参考

CheckMessage

class CheckMessage(level, msg, hint=None, obj=None, id=None)

系统检查提出的警告和错误必须是 CheckMessage 的实例。一个实例封装了一个单一的可报告的错误或警告。它还提供适用于该信息的上下文和提示,以及用于过滤目的的唯一标识符。

构造方法的参数:

level
消息的严重性。使用预定义的数值之一。DEBUGINFOWARNINGERRORCRITICAL。如果级别大于或等于 ERROR,那么 Django 将阻止管理命令的执行。等级小于 ``ERROR```的消息(即警告)会被报告到控制台,但可以被静默。
msg
描述问题的简短(少于 80 个字符)字符串。该字符串 不应 包含换行符。
hint
一个单行字符串,提供解决问题的提示。如果不能提供任何提示,或者提示是错误信息中不言自明的,可以省略提示,或者使用 None 值。
obj
可选的。为信息提供上下文的对象(例如,发现问题的模型)。该对象应该是一个模型、字段、管理器或定义了 str__() 方法的任何其他对象。该方法在报告所有消息时使用,其结果在消息之前。
id
可选字符串。问题的唯一标识符。标识符应遵循 applabel.X001 的模式,其中 X 是字母 CEWID 中的一个,表示消息的严重性(C 表示严重,E 表示错误等)。这个数字可由应用程序分配,但在该应用程序内应是唯一的。

有一些子类可以使创建具有通用级别的消息更容易。当使用它们时,你可以省略 level 参数,因为它已被类名所隐含。

class Debug(msg, hint=None, obj=None, id=None)
class Info(msg, hint=None, obj=None, id=None)
class Warning(msg, hint=None obj=None, id=None)
class Error(msg, hint=None, obj=None, id=None)
class Critical(msg, hint=None, obj=None, id=None)

内置标签

Django 的系统检查按以下标签组织:

  • admin:检查所有管理站点的声明。
  • async_support: 检查异步相关配置。
  • caches:检查缓存相关的配置。
  • compatibility:标记版本升级可能导致的问题。
  • database:检查与数据库有关的配置问题。默认情况下不运行数据库检查,因为数据库检查的工作比普通检查的静态代码分析更多。只有通过 migrate 命令或在调用 check 命令时使用 --database 选项指定配置的数据库别名时,才会运行数据库检查。
  • models:检查模型、字段和管理器定义。
  • security:检查安全相关配置。
  • signals:检查信号声明和处理器注册信息。
  • staticfiles:检查 django.contrib.staticfiles 配置。
  • templates:检查模板相关配置。
  • translation:检查翻译相关配置。
  • urls:检查 URL 配置。

一些可能通过多个标签同时注册的检查项。

Changed in Django 3.1:

增加了 async_support 标签。

Changed in Django 3.1:

database 检查现在只对使用 check --database 选项指定的数据库别名运行。

核心系统检查

异步支持

New in Django 3.1.

以下检查验证了你对 异步支持 的配置:

向后兼容

兼容性检查警告那些升级 Django 后可能出现的问题。

  • 2_0.W001:你的 URL 模式 <pattern> 有一个 route 包含 (?P<、以 ^ 开始或以 $ 结束。这可能是在从 url() 迁移到 path() 时的一个疏忽。

缓存

以下检查验证你的 CACHES 配置是否正确设置:

  • caches.E001:你必须在你的 CACHES 配置中定义一个 'default' 缓存。

数据库

MySQL 和 MariaDB

如果你使用的是 MySQL 或 MariaDB,将执行以下检查:

  • mysql.E001:MySQL/MariaDB 不允许有唯一约束的 CharField 有一个 max_length > 255。这项检查在 Django 3.1 中 被改为 mysql.W003,因为真正的最大尺寸取决于许多因素。
  • mysql.W002:MySQL/MariaDB 数据库连接 <alias> 未设置为严格模式。另见 设置 sql_mode
  • mysql.W003:MySQL/MariaDB 不允许有唯一约束的 CharFieldmax_length > 255。

模型字段

  • fields.E001:字段名不能以下划线结尾。
  • fields.E002:字段名不能有 "__"
  • fields.E003pk 是保留关键字,不能作为字段名使用。
  • fields.E004choices 必须是可迭代对象(例如,列表或元组)。
  • fields.E005choices 必须是一个可迭代对象,返回由 (actual value, human readable name) 构成的元组。
  • fields.E006db_index 必须是 NoneTrueFalse
  • fields.E007:主键不能有 null = True
  • fields.E008:所有 validators 必须都是可调用的。
  • fields.E009max_length 太小,无法容纳 choices 中的最长值(<count> 字符)。
  • fields.E010<field> 默认值应该是一个可调用对象,而不是一个实例,这样就不会在所有字段实例之间共享。
  • fields.E100AutoField 必须设置 primary_key=True。
  • fields.E110BooleanField 不接受空值。这项检查出现在 Django 2.1 中增加对空值的支持之前
  • fields.E120CharField 必须定义一个 max_length 属性。
  • fields.E121max_length 必须是个正整数。
  • fields.W122max_length 在使用 <integer field type> 时会被忽略。
  • fields.E130DecimalField 必须定义一个 decimal_places 属性。
  • fields.E131decimal_places 必须是个非负整数。
  • fields.E132DecimalField 必须定义一个 max_digits 属性。
  • fields.E133max_digits 必须是一个非负整数。
  • fields.E134max_digits 必须大于或等于 decimal_places
  • fields.E140FilePathFieldallow_filesallow_folders 必须有一个被设为 True。
  • fields.E150: 若 GenericIPAddressField 不允许 null 值,那么它也不接受空值,因为空值被保存为 null。
  • fields.E160auto_nowauto_now_adddefault 等选项是相互排斥的。这些选项只能有一个。
  • fields.W161:提供了固定的默认值。
  • fields.W162<database> 并不支持在 <field data type> 列上创建数据库索引。
  • fields.E170BinaryFielddefault 不能是字符串。使用字节内容代替。
  • fields.E180<database> 不支持 JSONField
  • fields.E900IPAddressField 已被删除,但历史迁移中的支持除外。
  • fields.W900IPAddressField 已被废弃。在 Django 1.9 中,将取消对它的支持(除了历史迁移)。这个检查出现在 Django 1.7 和 1.8 中
  • fields.W901CommaSeparatedIntegerField 已被废弃。在 Django 2.0 中,对它的支持将被删除(除了在历史迁移中)。这个检查出现在 Django 1.10 和 1.11 中
  • fields.E901CommaSeparatedIntegerField 已被删除,但历史迁移中的支持除外。
  • fields.W902FloatRangeField 已被废弃,将在 Django 3.1 中删除。这项检查出现在 Django 2.2 和 3.0 中
  • fields.W903NullBooleanField 已被废弃。在 Django 4.0 中,将取消对它的支持(历史迁移除外)。
  • fields.W904django.contrib.postgres.fields.JSONField 已被废弃。对它的支持(除了在历史迁移中)将在 Django 4.0 中被删除。

文件字段

  • fields.E200unique 不是 FileField 的有效参数。这项检查在 Django 1.11 中已被删除
  • fields.E201primary_key 对于 FileField 来说不是个有效的参数。
  • fields.E202FileFieldupload_to 参数必须是个相对路径,而不是一个相对路径。
  • fields.E210: 不能使用 ImageField,因为未安装 Pillow。

模型

  • models.E001<swappable> 不是表单 app_label.app_name
  • models.E002: <SETTING> references <model>, which has not been installed, or is abstract.
  • models.E003: The model has two identical many-to-many relations through the intermediate model <app_label>.<model>.
  • models.E004: id can only be used as a field name if the field also sets primary_key=True.
  • models.E005: The field <field name> from parent model <model> clashes with the field <field name> from parent model <model>.
  • models.E006:与另一个模型 <model> 的字段 <field name> 冲突的字段。
  • models.E007: 列名 <column name> 被其它字段使用的字段 <field name>
  • models.E008index_together 必须是个列表或元组。
  • models.E009: 所有 index_together 元素都必须是列表或元组。
  • models.E010unique_together 必须是个列表或元组。
  • models.E011: 所有 unique_together 元素都必须是列表或元组。
  • models.E012indexes/index_together/unique_together 指向了不存在的字段 <field name>
  • models.E013indexes/index_together/unique_together 指向一个 ManyToManyField <field name>,但此选项不支持 ManyToManyField
  • models.E014ordering 必须是个元组或列表(即便你只想按照一个字段进行排序)。
  • models.E015: ordering refers to the nonexistent field, related field, or lookup <field name>.
  • models.E016: indexes/index_together/unique_together refers to field <field_name> which is not local to model <model>.
  • models.E017: Proxy model <model> contains model fields.
  • models.E018: Autogenerated column name too long for field <field>. Maximum length is <maximum length> for database <alias>.
  • models.E019: Autogenerated column name too long for M2M field <M2M field>. Maximum length is <maximum length> for database <alias>.
  • models.E020: The <model>.check() class method is currently overridden.
  • models.E021: ordering and order_with_respect_to cannot be used together.
  • models.E022: <function> contains a lazy reference to <app label>.<model>, but app <app label> isn't installed or doesn't provide model <model>.
  • models.E023: The model name <model> cannot start or end with an underscore as it collides with the query lookup syntax.
  • models.E024: The model name <model> cannot contain double underscores as it collides with the query lookup syntax.
  • models.E025: The property <property name> clashes with a related field accessor.
  • models.E026: The model cannot have more than one field with primary_key=True.
  • models.W027: <database> does not support check constraints.
  • models.E028: db_table <db_table> is used by multiple models: <model list>.
  • models.E029: index name <index> is not unique for model <model>.
  • models.E030: index name <index> is not unique amongst models: <model list>.
  • models.E031: constraint name <constraint> is not unique for model <model>.
  • models.E032: constraint name <constraint> is not unique amongst models: <model list>.
  • models.E033: The index name <index> cannot start with an underscore or a number.
  • models.E034: The index name <index> cannot be longer than <max_length> characters.
  • models.W035: db_table <db_table> is used by multiple models: <model list>.
  • models.W036: <database> does not support unique constraints with conditions.
  • models.W037: <database> does not support indexes with conditions.
  • models.W038: <database> does not support deferrable unique constraints.

安全

The security checks do not make your site secure. They do not audit code, do intrusion detection, or do anything particularly complex. Rather, they help perform an automated, low-hanging-fruit checklist, that can help you to improve your site's security.

Some of these checks may not be appropriate for your particular deployment configuration. For instance, if you do your HTTP to HTTPS redirection in a load balancer, it'd be irritating to be constantly warned about not having enabled SECURE_SSL_REDIRECT. Use SILENCED_SYSTEM_CHECKS to silence unneeded checks.

The following checks are run if you use the check --deploy option:

  • security.W001: You do not have django.middleware.security.SecurityMiddleware in your MIDDLEWARE so the SECURE_HSTS_SECONDS, SECURE_CONTENT_TYPE_NOSNIFF, SECURE_BROWSER_XSS_FILTER, SECURE_REFERRER_POLICY, and SECURE_SSL_REDIRECT settings will have no effect.
  • security.W002: You do not have django.middleware.clickjacking.XFrameOptionsMiddleware in your MIDDLEWARE, so your pages will not be served with an 'x-frame-options' header. Unless there is a good reason for your site to be served in a frame, you should consider enabling this header to help prevent clickjacking attacks.
  • security.W003: You don't appear to be using Django's built-in cross-site request forgery protection via the middleware (django.middleware.csrf.CsrfViewMiddleware is not in your MIDDLEWARE). Enabling the middleware is the safest approach to ensure you don't leave any holes.
  • security.W004: You have not set a value for the SECURE_HSTS_SECONDS setting. If your entire site is served only over SSL, you may want to consider setting a value and enabling HTTP Strict Transport Security. Be sure to read the documentation first; enabling HSTS carelessly can cause serious, irreversible problems.
  • security.W005: You have not set the SECURE_HSTS_INCLUDE_SUBDOMAINS setting to True. Without this, your site is potentially vulnerable to attack via an insecure connection to a subdomain. Only set this to True if you are certain that all subdomains of your domain should be served exclusively via SSL.
  • security.W006: Your SECURE_CONTENT_TYPE_NOSNIFF setting is not set to True, so your pages will not be served with an 'X-Content-Type-Options: nosniff' header. You should consider enabling this header to prevent the browser from identifying content types incorrectly.
  • security.W007: Your SECURE_BROWSER_XSS_FILTER setting is not set to True, so your pages will not be served with an 'X-XSS-Protection: 1; mode=block' header. You should consider enabling this header to activate the browser's XSS filtering and help prevent XSS attacks. This check is removed in Django 3.0 as the X-XSS-Protection header is no longer honored by modern browsers.
  • security.W008: Your SECURE_SSL_REDIRECT setting is not set to True. Unless your site should be available over both SSL and non-SSL connections, you may want to either set this setting to True or configure a load balancer or reverse-proxy server to redirect all connections to HTTPS.
  • security.W009: Your SECRET_KEY has less than 50 characters or less than 5 unique characters. Please generate a long and random SECRET_KEY, otherwise many of Django's security-critical features will be vulnerable to attack.
  • security.W010: You have django.contrib.sessions in your INSTALLED_APPS but you have not set SESSION_COOKIE_SECURE to True. Using a secure-only session cookie makes it more difficult for network traffic sniffers to hijack user sessions.
  • security.W011: You have django.contrib.sessions.middleware.SessionMiddleware in your MIDDLEWARE, but you have not set SESSION_COOKIE_SECURE to True. Using a secure-only session cookie makes it more difficult for network traffic sniffers to hijack user sessions.
  • security.W012: SESSION_COOKIE_SECURE is not set to True. Using a secure-only session cookie makes it more difficult for network traffic sniffers to hijack user sessions.
  • security.W013: You have django.contrib.sessions in your INSTALLED_APPS, but you have not set SESSION_COOKIE_HTTPONLY to True. Using an HttpOnly session cookie makes it more difficult for cross-site scripting attacks to hijack user sessions.
  • security.W014: You have django.contrib.sessions.middleware.SessionMiddleware in your MIDDLEWARE, but you have not set SESSION_COOKIE_HTTPONLY to True. Using an HttpOnly session cookie makes it more difficult for cross-site scripting attacks to hijack user sessions.
  • security.W015: SESSION_COOKIE_HTTPONLY is not set to True. Using an HttpOnly session cookie makes it more difficult for cross-site scripting attacks to hijack user sessions.
  • security.W016: CSRF_COOKIE_SECURE is not set to True. Using a secure-only CSRF cookie makes it more difficult for network traffic sniffers to steal the CSRF token.
  • security.W017: CSRF_COOKIE_HTTPONLY is not set to True. Using an HttpOnly CSRF cookie makes it more difficult for cross-site scripting attacks to steal the CSRF token. This check is removed in Django 1.11 as the CSRF_COOKIE_HTTPONLY setting offers no practical benefit.
  • security.W018: You should not have DEBUG set to True in deployment.
  • security.W019: You have django.middleware.clickjacking.XFrameOptionsMiddleware in your MIDDLEWARE, but X_FRAME_OPTIONS is not set to 'DENY'. Unless there is a good reason for your site to serve other parts of itself in a frame, you should change it to 'DENY'.
  • security.W020: ALLOWED_HOSTS must not be empty in deployment.
  • security.W021: You have not set the SECURE_HSTS_PRELOAD setting to True. Without this, your site cannot be submitted to the browser preload list.
  • security.W022: You have not set the SECURE_REFERRER_POLICY setting. Without this, your site will not send a Referrer-Policy header. You should consider enabling this header to protect user privacy.
  • security.E023: You have set the SECURE_REFERRER_POLICY setting to an invalid value.

The following checks verify that your security-related settings are correctly configured:

信号

  • signals.E001: <handler> was connected to the <signal> signal with a lazy reference to the sender <app label>.<model>, but app <app label> isn't installed or doesn't provide model <model>.

模板

The following checks verify that your TEMPLATES setting is correctly configured:

  • templates.E001: You have 'APP_DIRS': True in your TEMPLATES but also specify 'loaders' in OPTIONS. Either remove APP_DIRS or remove the 'loaders' option.
  • templates.E002: string_if_invalid in TEMPLATES OPTIONS must be a string but got: {value} ({type}).

翻译

The following checks are performed on your translation configuration:

  • translation.E001: You have provided an invalid value for the LANGUAGE_CODE setting: <value>.
  • translation.E002: You have provided an invalid language code in the LANGUAGES setting: <value>.
  • translation.E003: You have provided an invalid language code in the LANGUAGES_BIDI setting: <value>.
  • translation.E004: You have provided a value for the LANGUAGE_CODE setting that is not in the LANGUAGES setting.

URLs

以下检查项针对你的 URL 配置执行:

  • urls.W001: Your URL pattern <pattern> uses include() with a route ending with a $. Remove the dollar from the route to avoid problems including URLs.
  • urls.W002: Your URL pattern <pattern> has a route beginning with a /. Remove this slash as it is unnecessary. If this pattern is targeted in an include(), ensure the include() pattern has a trailing /.
  • urls.W003: Your URL pattern <pattern> has a name including a :. Remove the colon, to avoid ambiguous namespace references.
  • urls.E004: Your URL pattern <pattern> is invalid. Ensure that urlpatterns is a list of path() and/or re_path() instances.
  • urls.W005: URL namespace <namespace> isn't unique. You may not be able to reverse all URLs in this namespace.
  • urls.E006: The MEDIA_URL/ STATIC_URL setting must end with a slash.
  • urls.E007: The custom handlerXXX view 'path.to.view' does not take the correct number of arguments (…).
  • urls.E008: The custom handlerXXX view 'path.to.view' could not be imported.

contrib 应用检查

admin

后台检查项均作为 admin 标签的一部分执行。

以下检查项在每个通过后台站点注册的 ModelAdmin (或其子类)上执行。

  • admin.E001raw_id_fields 的值必须是个列表或元组。
  • admin.E002raw_id_fields[n] 的值指向 <field name>,它并不是 <model> 的属性。
  • admin.E003raw_id_fields[n] 的值必须是个外键或一个多对多字段。
  • admin.E004fields 的值必须是列表或元组。
  • admin.E005fieldsetsfields 都是定制的。
  • admin.E006fields 的值包含了重复字段。
  • admin.E007fieldsets 的值必须是个列表或元组。
  • admin.E008fieldsets[n] 的值必须是个列表或元组。
  • admin.E009fieldsets[n] 的值的长度必须是 2。
  • admin.E010fieldsets[n][1] 的值必须是个字典。
  • admin.E011fieldsets[n][1] 的值必须包含键 fields
  • admin.E012fieldsets[n][1] 中有重复字段。
  • admin.E013: fields[n]/fieldsets[n][m] cannot include the ManyToManyField <field name>, because that field manually specifies a relationship model.
  • admin.E014exclude 的值必须是个列表或元组。
  • admin.E015exclude 的值必须包含重复字段。
  • admin.E016form 的值必须继承自 BaseModelForm
  • admin.E017filter_vertical 的值必须是个列表或元组。
  • admin.E018filter_horizontal 的值必须是个列表或元组。
  • admin.E019: The value of filter_vertical[n]/filter_horizontal[n] refers to <field name>, which is not an attribute of <model>.
  • admin.E020: The value of filter_vertical[n]/filter_horizontal[n] must be a many-to-many field.
  • admin.E021: The value of radio_fields must be a dictionary.
  • admin.E022: The value of radio_fields refers to <field name>, which is not an attribute of <model>.
  • admin.E023: The value of radio_fields refers to <field name>, which is not instance of ForeignKey, and does not have a choices definition.
  • admin.E024: The value of radio_fields[<field name>] must be either admin.HORIZONTAL or admin.VERTICAL.
  • admin.E025: The value of view_on_site must be either a callable or a boolean value.
  • admin.E026: The value of prepopulated_fields must be a dictionary.
  • admin.E027: The value of prepopulated_fields refers to <field name>, which is not an attribute of <model>.
  • admin.E028: The value of prepopulated_fields refers to <field name>, which must not be a DateTimeField, a ForeignKey, a OneToOneField, or a ManyToManyField field.
  • admin.E029: The value of prepopulated_fields[<field name>] must be a list or tuple.
  • admin.E030: The value of prepopulated_fields refers to <field name>, which is not an attribute of <model>.
  • admin.E031: The value of ordering must be a list or tuple.
  • admin.E032: The value of ordering has the random ordering marker ?, but contains other fields as well.
  • admin.E033: The value of ordering refers to <field name>, which is not an attribute of <model>.
  • admin.E034: The value of readonly_fields must be a list or tuple.
  • admin.E035: The value of readonly_fields[n] is not a callable, an attribute of <ModelAdmin class>, or an attribute of <model>.
  • admin.E036: The value of autocomplete_fields must be a list or tuple.
  • admin.E037: The value of autocomplete_fields[n] refers to <field name>, which is not an attribute of <model>.
  • admin.E038: The value of autocomplete_fields[n] must be a foreign key or a many-to-many field.
  • admin.E039: An admin for model <model> has to be registered to be referenced by <modeladmin>.autocomplete_fields.
  • admin.E040: <modeladmin> must define search_fields, because it's referenced by <other_modeladmin>.autocomplete_fields.

ModelAdmin

The following checks are performed on any ModelAdmin that is registered with the admin site:

  • admin.E101save_as 的值必须是个布尔值。
  • admin.E102save_on_top 的值必须是个布尔值。
  • admin.E103inlines 的值必须是个列表或元组。
  • admin.E104<InlineModelAdmin class> 必须继承自 InlineModelAdmin
  • admin.E105<InlineModelAdmin class> 必须有个 model 属性。
  • admin.E106<InlineModelAdmin class>.model 的值必须是个 Model
  • admin.E107list_display 的值必须是个列表或元组。
  • admin.E108: The value of list_display[n] refers to <label>, which is not a callable, an attribute of <ModelAdmin class>, or an attribute or method on <model>.
  • admin.E109list_display[n] 的值绝对不能是个 ManyToManyField 字段。
  • admin.E110: The value of list_display_links must be a list, a tuple, or None.
  • admin.E111: The value of list_display_links[n] refers to <label>, which is not defined in list_display.
  • admin.E112: The value of list_filter must be a list or tuple.
  • admin.E113: The value of list_filter[n] must inherit from ListFilter.
  • admin.E114: The value of list_filter[n] must not inherit from FieldListFilter.
  • admin.E115: The value of list_filter[n][1] must inherit from FieldListFilter.
  • admin.E116: The value of list_filter[n] refers to <label>, which does not refer to a Field.
  • admin.E117: The value of list_select_related must be a boolean, tuple or list.
  • admin.E118: The value of list_per_page must be an integer.
  • admin.E119: The value of list_max_show_all must be an integer.
  • admin.E120: The value of list_editable must be a list or tuple.
  • admin.E121: The value of list_editable[n] refers to <label>, which is not an attribute of <model>.
  • admin.E122: The value of list_editable[n] refers to <label>, which is not contained in list_display.
  • admin.E123: The value of list_editable[n] cannot be in both list_editable and list_display_links.
  • admin.E124: The value of list_editable[n] refers to the first field in list_display (<label>), which cannot be used unless list_display_links is set.
  • admin.E125: The value of list_editable[n] refers to <field name>, which is not editable through the admin.
  • admin.E126: The value of search_fields must be a list or tuple.
  • admin.E127: The value of date_hierarchy refers to <field name>, which does not refer to a Field.
  • admin.E128: The value of date_hierarchy must be a DateField or DateTimeField.
  • admin.E129: <modeladmin> must define a has_<foo>_permission() method for the <action> action.
  • admin.E130: __name__ attributes of actions defined in <modeladmin> must be unique. Name <name> is not unique.

InlineModelAdmin

The following checks are performed on any InlineModelAdmin that is registered as an inline on a ModelAdmin.

  • admin.E201: Cannot exclude the field <field name>, because it is the foreign key to the parent model <app_label>.<model>.
  • admin.E202: <model> has no ForeignKey to <parent model>./ <model> has more than one ForeignKey to <parent model>. You must specify a fk_name attribute.
  • admin.E203: The value of extra must be an integer.
  • admin.E204: The value of max_num must be an integer.
  • admin.E205: The value of min_num must be an integer.
  • admin.E206: The value of formset must inherit from BaseModelFormSet.

GenericInlineModelAdmin

The following checks are performed on any GenericInlineModelAdmin that is registered as an inline on a ModelAdmin.

  • admin.E301: 'ct_field' references <label>, which is not a field on <model>.
  • admin.E302: 'ct_fk_field' references <label>, which is not a field on <model>.
  • admin.E303: <model> has no GenericForeignKey.
  • admin.E304: <model> has no GenericForeignKey using content type field <field name> and object ID field <field name>.

AdminSite

The following checks are performed on the default AdminSite:

auth

  • auth.E001: REQUIRED_FIELDS must be a list or tuple.
  • auth.E002: The field named as the USERNAME_FIELD for a custom user model must not be included in REQUIRED_FIELDS.
  • auth.E003: <field> must be unique because it is named as the USERNAME_FIELD.
  • auth.W004: <field> is named as the USERNAME_FIELD, but it is not unique.
  • auth.E005: The permission codenamed <codename> clashes with a builtin permission for model <model>.
  • auth.E006: The permission codenamed <codename> is duplicated for model <model>.
  • auth.E007: The verbose_name of model <model> must be at most 244 characters for its builtin permission names to be at most 255 characters.
  • auth.E008: The permission named <name> of model <model> is longer than 255 characters.
  • auth.C009: <User model>.is_anonymous must be an attribute or property rather than a method. Ignoring this is a security issue as anonymous users will be treated as authenticated!
  • auth.C010: <User model>.is_authenticated must be an attribute or property rather than a method. Ignoring this is a security issue as anonymous users will be treated as authenticated!
  • auth.E011: The name of model <model> must be at most 93 characters for its builtin permission names to be at most 100 characters.
  • auth.E012: The permission codenamed <codename> of model <model> is longer than 100 characters.

contenttypes

The following checks are performed when a model contains a GenericForeignKey or GenericRelation:

  • contenttypes.E001: The GenericForeignKey object ID references the nonexistent field <field>.
  • contenttypes.E002: The GenericForeignKey content type references the nonexistent field <field>.
  • contenttypes.E003: <field> is not a ForeignKey.
  • contenttypes.E004: <field> is not a ForeignKey to contenttypes.ContentType.
  • contenttypes.E005: Model names must be at most 100 characters.

postgres

The following checks are performed on django.contrib.postgres model fields:

  • postgres.E001: Base field for array has errors: ...
  • postgres.E002: Base field for array cannot be a related field.
  • postgres.E003: <field> default should be a callable instead of an instance so that it's not shared between all field instances. This check was changed to fields.E010 in Django 3.1.

sites

The following checks are performed on any model using a CurrentSiteManager:

  • sites.E001: CurrentSiteManager could not find a field named <field name>.
  • sites.E002: CurrentSiteManager cannot use <field> as it is not a foreign key or a many-to-many field.

staticfiles

The following checks verify that django.contrib.staticfiles is correctly configured: