We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
model-admin
1 parent 7d541ae commit f7fa53aCopy full SHA for f7fa53a
README.md
@@ -36,7 +36,15 @@ Collection of useful checks for Django Checks Frameworks
36
37
Install with `pip install django-extra-checks`
38
39
-Add `extra_checks` to `INSTALLED_APPS`.
+Add `extra_checks` to `INSTALLED_APPS` in your Django settings:
40
+```py
41
+INSTALLED_APPS = [
42
+ ...,
43
+ "django.contrib.admin", # make sure this comes before 'extra_checks' if you plan to use the `model-admin` check
44
+ "extra_checks",
45
+ ...
46
+]
47
+```
48
49
## Settings
50
0 commit comments